From e1a3aeca77d55c5a3074f6c05cda6ae9f0368201 Mon Sep 17 00:00:00 2001 From: Paul Schneider Date: Thu, 23 Mar 2017 01:01:26 +0100 Subject: [PATCH] a running test template (coreclr) --- test/UnitTest1.cs | 14 ++++++++++++++ test/test.csproj | 13 +++++++++++++ 2 files changed, 27 insertions(+) create mode 100755 test/UnitTest1.cs create mode 100755 test/test.csproj diff --git a/test/UnitTest1.cs b/test/UnitTest1.cs new file mode 100755 index 00000000..0df16748 --- /dev/null +++ b/test/UnitTest1.cs @@ -0,0 +1,14 @@ +using System; +using Xunit; + +namespace test1 +{ + public class UnitTest1 + { + [Fact] + public void Test1() + { + + } + } +} diff --git a/test/test.csproj b/test/test.csproj new file mode 100755 index 00000000..7c8da8f6 --- /dev/null +++ b/test/test.csproj @@ -0,0 +1,13 @@ + + + + netcoreapp1.1 + + + + + + + + +