forked from junit-team/junit-framework
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSealedClassTests.java
More file actions
42 lines (32 loc) · 999 Bytes
/
Copy pathSealedClassTests.java
File metadata and controls
42 lines (32 loc) · 999 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/*
* Copyright 2015-2025 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 org.junit.jupiter.engine;
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));
}
abstract static sealed class AbstractTestCase permits TestCase {
@Test
void succeedingTest() {
assertTrue(true);
}
@Test
void failingTest() {
fail("always fails");
}
}
static final class TestCase extends AbstractTestCase {
}
}