Skip to content

Commit 32c4065

Browse files
committed
add the test class
1 parent 20ea6eb commit 32c4065

File tree

2 files changed

+30
-0
lines changed

2 files changed

+30
-0
lines changed

pom.xml

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,14 @@
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>
Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
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+
}

0 commit comments

Comments
 (0)