diff options
Diffstat (limited to 'Oscilloscope/OscilloscopeTests')
| -rw-r--r-- | Oscilloscope/OscilloscopeTests/OscilloscopeTests.csproj | 17 | ||||
| -rw-r--r-- | Oscilloscope/OscilloscopeTests/WaveTests.cs | 12 |
2 files changed, 29 insertions, 0 deletions
diff --git a/Oscilloscope/OscilloscopeTests/OscilloscopeTests.csproj b/Oscilloscope/OscilloscopeTests/OscilloscopeTests.csproj new file mode 100644 index 0000000..7676db9 --- /dev/null +++ b/Oscilloscope/OscilloscopeTests/OscilloscopeTests.csproj @@ -0,0 +1,17 @@ +<Project Sdk="Microsoft.NET.Sdk"> + + <PropertyGroup> + <TargetFramework>netcoreapp2.1</TargetFramework> + </PropertyGroup> + + <ItemGroup> + <PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.2.0" /> + <PackageReference Include="NUnit" Version="3.12.0" /> + <PackageReference Include="NUnit3TestAdapter" Version="3.15.1" /> + </ItemGroup> + + <ItemGroup> + <ProjectReference Include="..\Oscilloscope\Oscilloscope.csproj" /> + </ItemGroup> + +</Project> diff --git a/Oscilloscope/OscilloscopeTests/WaveTests.cs b/Oscilloscope/OscilloscopeTests/WaveTests.cs new file mode 100644 index 0000000..aae4f17 --- /dev/null +++ b/Oscilloscope/OscilloscopeTests/WaveTests.cs @@ -0,0 +1,12 @@ +using System; +using System.Linq; +using Oscilloscope; +using NUnit.Framework; +using System.Collections.Generic; + +namespace OscilloscopeTests { + [TestFixture] + public class WaveTests { + + } +} |
