Files
openide/platform/remote-servers/target-integration-tests/multiModuleTargetApp/tests/SomeTest.java
Alexander Koshevoy ee566def1f Add tests for running JUnit run configurations in multi-module project on various targets
GitOrigin-RevId: 180332dbf522973ffae1bd602f4ef298068b547a
2021-03-25 12:08:19 +00:00

15 lines
487 B
Java

// Copyright 2000-2021 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
import org.junit.jupiter.api.Tag;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
public class SomeTest {
@Tag("selected")
@Test
public void testSomething() {
// Breakpoint! suspendPolicy(SuspendNone) LogExpression("Debugger: testSomething() reached")
assertEquals(2 * 2, 4);
}
}