From abfbe266cfef53a5d63fd935e70b76c861577db1 Mon Sep 17 00:00:00 2001 From: Don Oerkfitz Date: Wed, 28 Apr 2021 15:10:00 -0500 Subject: [PATCH] added testing suite --- OSI-API.Test/OSI-API.Test.csproj | 27 +++++++++++++++++++++++++++ OSI-API.Test/UnitTest1.cs | 14 ++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 OSI-API.Test/OSI-API.Test.csproj create mode 100644 OSI-API.Test/UnitTest1.cs diff --git a/OSI-API.Test/OSI-API.Test.csproj b/OSI-API.Test/OSI-API.Test.csproj new file mode 100644 index 0000000..32a62d1 --- /dev/null +++ b/OSI-API.Test/OSI-API.Test.csproj @@ -0,0 +1,27 @@ + + + + net5.0 + OSI_API.Test + + false + + + + + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + runtime; build; native; contentfiles; analyzers; buildtransitive + all + + + + + + + + diff --git a/OSI-API.Test/UnitTest1.cs b/OSI-API.Test/UnitTest1.cs new file mode 100644 index 0000000..f276a87 --- /dev/null +++ b/OSI-API.Test/UnitTest1.cs @@ -0,0 +1,14 @@ +using System; +using Xunit; + +namespace OSI_API.Test +{ + public class UnitTest1 + { + [Fact] + public void Test1() + { + + } + } +}