BAEL-7131 version 5 - renamed class name to end with UnitTest
This commit is contained in:
+1
-1
@@ -21,7 +21,7 @@ import org.junit.Assert;
|
|||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.api.io.TempDir;
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
|
||||||
public class InputStreamTest {
|
public class InputStreamUnitTest {
|
||||||
@Test
|
@Test
|
||||||
public void givenAString_whenWrittenToFileInputStream_thenShouldMatchWhenRead(@TempDir Path tempDir) throws IOException {
|
public void givenAString_whenWrittenToFileInputStream_thenShouldMatchWhenRead(@TempDir Path tempDir) throws IOException {
|
||||||
Path sampleOut = tempDir.resolve("sample-out.txt");
|
Path sampleOut = tempDir.resolve("sample-out.txt");
|
||||||
+1
-1
@@ -14,7 +14,7 @@ import org.junit.Assert;
|
|||||||
import org.junit.jupiter.api.Test;
|
import org.junit.jupiter.api.Test;
|
||||||
import org.junit.jupiter.api.io.TempDir;
|
import org.junit.jupiter.api.io.TempDir;
|
||||||
|
|
||||||
public class InputStreamReaderTest {
|
public class InputStreamReaderUnitTest {
|
||||||
@Test
|
@Test
|
||||||
public void givenAStringWrittenToAFile_whenReadByInputStreamReader_thenShouldMatchWhenRead(@TempDir Path tempDir) throws IOException {
|
public void givenAStringWrittenToAFile_whenReadByInputStreamReader_thenShouldMatchWhenRead(@TempDir Path tempDir) throws IOException {
|
||||||
boolean isMatched = false;
|
boolean isMatched = false;
|
||||||
Reference in New Issue
Block a user