mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-07 13:39:36 +07:00
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
17 lines
503 B
Java
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")
|
|
);
|
|
}
|
|
}
|