Skip to content

Commit

Permalink
dont disable tests
Browse files Browse the repository at this point in the history
  • Loading branch information
wagyourtail committed Oct 7, 2024
1 parent 4ac3f9e commit 8b6743d
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ class TestJavaAutoImports {
}

@Test
@Disabled
fun `should add unambiguous missing imports from JDK`() {
TestData.remap("""
package test;
Expand Down Expand Up @@ -138,7 +137,6 @@ class TestJavaAutoImports {
}

@Test
@Disabled
fun `should add new imports in empty lines`() {
TestData.remap("""
package test;
Expand All @@ -160,7 +158,6 @@ class TestJavaAutoImports {
}

@Test
@Disabled
fun `should add new imports in place of removed imports`() {
TestData.remap("""
package test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import org.junit.jupiter.api.Test

class TestJavaAutoImportsFormatting {
@Test
@Disabled
fun `should separate java(x) from other imports with an empty line if possible`() {
TestData.remap("""
package test;
Expand All @@ -33,7 +32,6 @@ class TestJavaAutoImportsFormatting {
}

@Test
@Disabled
fun `should put new imports in single line if necessary to preserve original line count`() {
TestData.remap("""
package test;
Expand All @@ -55,7 +53,6 @@ class TestJavaAutoImportsFormatting {
}

@Test
@Disabled
fun `should always leave line after imports`() {
TestData.remap("""
package test;
Expand All @@ -73,7 +70,6 @@ class TestJavaAutoImportsFormatting {
}

@Test
@Disabled
fun `should put imports in same line as package if required`() {
TestData.remap("""
package test;
Expand All @@ -89,7 +85,6 @@ class TestJavaAutoImportsFormatting {
}

@Test
@Disabled
fun `should remove unused imports from shared lines`() {
TestData.remap("""
package test;
Expand Down

0 comments on commit 8b6743d

Please sign in to comment.