BAEL-7131 version 5 - renamed class name to end with UnitTest

This commit is contained in:
adalagandev 2024-02-12 10:12:12 +01:00
parent 17172ba21a
commit 8a0d5939f1
2 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ import org.junit.Assert;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;
public class InputStreamTest {
public class InputStreamUnitTest {
@Test
public void givenAString_whenWrittenToFileInputStream_thenShouldMatchWhenRead(@TempDir Path tempDir) throws IOException {
Path sampleOut = tempDir.resolve("sample-out.txt");

View File

@ -14,7 +14,7 @@ import org.junit.Assert;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.io.TempDir;
public class InputStreamReaderTest {
public class InputStreamReaderUnitTest {
@Test
public void givenAStringWrittenToAFile_whenReadByInputStreamReader_thenShouldMatchWhenRead(@TempDir Path tempDir) throws IOException {
boolean isMatched = false;