-
Notifications
You must be signed in to change notification settings - Fork 460
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
98 additions
and
4 deletions.
There are no files selected for viewing
45 changes: 45 additions & 0 deletions
45
testlib/src/main/resources/java/removeunusedimports/SealedClassTestsFormatted.test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
/* | ||
* Copyright 2015-2023 the original author or authors. | ||
* | ||
* All rights reserved. This program and the accompanying materials are | ||
* made available under the terms of the Eclipse Public License v2.0 which | ||
* accompanies this distribution and is available at | ||
* | ||
* https://www.eclipse.org/legal/epl-v20.html | ||
*/ | ||
|
||
package java.removeunusedimports; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
import static org.junit.jupiter.api.Assertions.fail; | ||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
class SealedClassTests extends AbstractJupiterTestEngineTests { | ||
|
||
@Test | ||
void sealedTestClassesAreTestClasses() { | ||
executeTestsForClass(TestCase.class).testEvents() // | ||
.assertStatistics(stats -> stats.finished(2).succeeded(1).failed(1)); | ||
} | ||
|
||
sealed | ||
abstract static class AbstractTestCase | ||
permits TestCase | ||
{ | ||
|
||
@Test | ||
void succeedingTest() { | ||
assertTrue(true); | ||
} | ||
|
||
@Test | ||
void failingTest() { | ||
fail("always fails"); | ||
} | ||
} | ||
|
||
static final class TestCase extends AbstractTestCase { | ||
} | ||
|
||
} |
46 changes: 46 additions & 0 deletions
46
testlib/src/main/resources/java/removeunusedimports/SealedClassTestsUnformatted.test
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
/* | ||
* Copyright 2015-2023 the original author or authors. | ||
* | ||
* All rights reserved. This program and the accompanying materials are | ||
* made available under the terms of the Eclipse Public License v2.0 which | ||
* accompanies this distribution and is available at | ||
* | ||
* https://www.eclipse.org/legal/epl-v20.html | ||
*/ | ||
|
||
package java.removeunusedimports; | ||
|
||
import static org.junit.jupiter.api.Assertions.assertTrue; | ||
import static org.junit.jupiter.api.Assertions.fail; | ||
|
||
import org.junit.jupiter.api.Test; | ||
import useless.project.UnusedClass; | ||
|
||
class SealedClassTests extends AbstractJupiterTestEngineTests { | ||
|
||
@Test | ||
void sealedTestClassesAreTestClasses() { | ||
executeTestsForClass(TestCase.class).testEvents() // | ||
.assertStatistics(stats -> stats.finished(2).succeeded(1).failed(1)); | ||
} | ||
|
||
sealed | ||
abstract static class AbstractTestCase | ||
permits TestCase | ||
{ | ||
|
||
@Test | ||
void succeedingTest() { | ||
assertTrue(true); | ||
} | ||
|
||
@Test | ||
void failingTest() { | ||
fail("always fails"); | ||
} | ||
} | ||
|
||
static final class TestCase extends AbstractTestCase { | ||
} | ||
|
||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters