File tree Expand file tree Collapse file tree 2 files changed +30
-0
lines changed
src/test/java/io/github/dbc Expand file tree Collapse file tree 2 files changed +30
-0
lines changed Original file line number Diff line number Diff line change 77 <groupId >io.github.dbc</groupId >
88 <artifactId >JCP_C1_P1</artifactId >
99 <version >1.0-SNAPSHOT</version >
10+ <dependencies >
11+ <dependency >
12+ <groupId >org.junit.jupiter</groupId >
13+ <artifactId >junit-jupiter</artifactId >
14+ <version >5.8.2</version >
15+ <scope >test</scope >
16+ </dependency >
17+ </dependencies >
1018
1119 <properties >
1220 <maven .compiler.source>18</maven .compiler.source>
Original file line number Diff line number Diff line change 1+ package io .github .dbc ;
2+
3+ import org .junit .jupiter .api .Assertions ;
4+ import org .junit .jupiter .api .BeforeEach ;
5+ import org .junit .jupiter .api .DisplayName ;
6+ import org .junit .jupiter .api .Test ;
7+
8+ class DuplicateCharactersCounterTest {
9+
10+ private DuplicateCharactersCounter counter ;
11+
12+ @ BeforeEach
13+ void setUp () {
14+ counter = new DuplicateCharactersCounter ();
15+ }
16+
17+ @ Test
18+ @ DisplayName ("" )
19+ void countDuplicateCharacters () {
20+ Assertions .fail ();
21+ }
22+ }
You can’t perform that action at this time.
0 commit comments