Files
openide/platform/execution-impl/testSources/com/intellij/execution/MessageTest.java
Nikolay Chashnikov 7749a2a40b [intellij project configuration] extract tests from platform.execution and platform.execution.impl to a separate module
This way we'll be able to reuse code from testFramework in them. (We cannot add dependency on testFramework to platform.execution.impl module because it'll lead to circular dependencies.)

GitOrigin-RevId: 678bf68acb047aeecd949da57c760977211d0f71
2022-02-08 08:24:48 +00:00

17 lines
503 B
Java

// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
package com.intellij.execution;
import org.junit.Assert;
import org.junit.Test;
public class MessageTest {
@Test
public void messageBundleTest() {
Assert.assertNotEquals(
"ExecutionBundle.properties was broken",
"!message.error.happened.0!",
ExecutionBundle.message("message.error.happened.0", "value")
);
}
}