BAEL-7131 version 5 - renamed class name to end with UnitTest
This commit is contained in:
parent
17172ba21a
commit
8a0d5939f1
@ -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");
|
@ -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;
|
Loading…
x
Reference in New Issue
Block a user