This commit is contained in:
BIN
Tests/.DS_Store
vendored
Normal file
BIN
Tests/.DS_Store
vendored
Normal file
Binary file not shown.
@ -2,5 +2,12 @@ namespace Tests.Stream;
|
||||
|
||||
public class StreamTest
|
||||
{
|
||||
|
||||
[Theory]
|
||||
[InlineData("thisfileexist.txt", true)]
|
||||
[InlineData("thisfiledontexist.txt", false)]
|
||||
|
||||
public void ExistFileTest(string filePath, bool expected)
|
||||
{
|
||||
Assert.Equal(expected, global::Stream.Stream.ExistFile(filePath));
|
||||
}
|
||||
}
|
@ -24,6 +24,7 @@
|
||||
|
||||
<ItemGroup>
|
||||
<ProjectReference Include="..\Iteration\Iteration.csproj" />
|
||||
<ProjectReference Include="..\Stream\Stream.csproj" />
|
||||
</ItemGroup>
|
||||
|
||||
</Project>
|
||||
|
Reference in New Issue
Block a user