From 9407ece5903e4856868ee8234b505e4b2ef32012 Mon Sep 17 00:00:00 2001 From: Aryadev Chavali Date: Sat, 2 Feb 2019 13:52:09 +0000 Subject: Added unit tests for testing methods (test driven development) --- Aggregator/Tests/Tests.csproj | 20 ++++++++++++++++++++ Aggregator/Tests/UnitTest1.cs | 11 +++++++++++ 2 files changed, 31 insertions(+) create mode 100644 Aggregator/Tests/Tests.csproj create mode 100644 Aggregator/Tests/UnitTest1.cs (limited to 'Aggregator/Tests') diff --git a/Aggregator/Tests/Tests.csproj b/Aggregator/Tests/Tests.csproj new file mode 100644 index 0000000..bd52966 --- /dev/null +++ b/Aggregator/Tests/Tests.csproj @@ -0,0 +1,20 @@ + + + + netcoreapp2.1 + + false + + + + + + + + + + + + + + diff --git a/Aggregator/Tests/UnitTest1.cs b/Aggregator/Tests/UnitTest1.cs new file mode 100644 index 0000000..29d2d62 --- /dev/null +++ b/Aggregator/Tests/UnitTest1.cs @@ -0,0 +1,11 @@ +using System; +using Xunit; + +namespace Tests { + public class UnitTest1 { + [Fact] + public void Test1() { + + } + } +} -- cgit v1.2.3-13-gbd6f