From a642a15947e257e781fd3926125c0ca6374b96ba Mon Sep 17 00:00:00 2001 From: Nikolay Krasko Date: Mon, 28 Dec 2015 16:06:26 +0300 Subject: [PATCH] "Run Test" line markers now wrap the function names. Additional marker on abstract class. --- .../runMarkers/jUnitTestClassWithSubclasses.kt | 10 +++++----- .../runMarkers/testNGTestClassWithSubclasses.kt | 12 ++++++------ 2 files changed, 11 insertions(+), 11 deletions(-) diff --git a/idea/testData/codeInsight/lineMarker/runMarkers/jUnitTestClassWithSubclasses.kt b/idea/testData/codeInsight/lineMarker/runMarkers/jUnitTestClassWithSubclasses.kt index daa0256a455..0f9da35e984 100644 --- a/idea/testData/codeInsight/lineMarker/runMarkers/jUnitTestClassWithSubclasses.kt +++ b/idea/testData/codeInsight/lineMarker/runMarkers/jUnitTestClassWithSubclasses.kt @@ -4,23 +4,23 @@ package testing import junit.framework.TestCase import org.junit.Test -abstract class KBase : TestCase() { +abstract class KBase : TestCase() { @Test fun testFoo() { } } -class KTest : KBase() { +class KTest : KBase() { @Test - fun testBar() { + fun testBar() { } } -class KTest2 : KBase() { +class KTest2 : KBase() { @Test - fun testBaz() { + fun testBaz() { } } \ No newline at end of file diff --git a/idea/testData/codeInsight/lineMarker/runMarkers/testNGTestClassWithSubclasses.kt b/idea/testData/codeInsight/lineMarker/runMarkers/testNGTestClassWithSubclasses.kt index 6ad0656744a..1cb1a4f4b70 100644 --- a/idea/testData/codeInsight/lineMarker/runMarkers/testNGTestClassWithSubclasses.kt +++ b/idea/testData/codeInsight/lineMarker/runMarkers/testNGTestClassWithSubclasses.kt @@ -3,23 +3,23 @@ package testing import org.testng.annotations.Test -abstract class KBase { +abstract class KBase { @Test - fun testFoo() { + fun testFoo() { } } -class KTest : KBase() { +class KTest : KBase() { @Test - fun testBar() { + fun testBar() { } } -class KTest2 : KBase() { +class KTest2 : KBase() { @Test - fun testBaz() { + fun testBaz() { } } \ No newline at end of file