From c486ce00d363f8324d5cb1f2426faa2aa5466ac2 Mon Sep 17 00:00:00 2001 From: Josh Creek Date: Wed, 12 Oct 2022 19:43:53 +0100 Subject: [PATCH] build(2022): Add back in previous changes --- AdventOfCode/AOC.Tests/AOC.Tests.csproj | 13 ++++++++----- AdventOfCode/AOC.Tests/Usings.cs | 3 ++- AdventOfCode/AOC.Tests/Y2022/Day01.cs | 8 +++++++- 3 files changed, 17 insertions(+), 7 deletions(-) diff --git a/AdventOfCode/AOC.Tests/AOC.Tests.csproj b/AdventOfCode/AOC.Tests/AOC.Tests.csproj index 33b6926..d43ee9f 100644 --- a/AdventOfCode/AOC.Tests/AOC.Tests.csproj +++ b/AdventOfCode/AOC.Tests/AOC.Tests.csproj @@ -8,7 +8,15 @@ false + + + + Always + + + + @@ -16,9 +24,4 @@ - - - - - diff --git a/AdventOfCode/AOC.Tests/Usings.cs b/AdventOfCode/AOC.Tests/Usings.cs index cefced4..b442603 100644 --- a/AdventOfCode/AOC.Tests/Usings.cs +++ b/AdventOfCode/AOC.Tests/Usings.cs @@ -1 +1,2 @@ -global using NUnit.Framework; \ No newline at end of file +global using NUnit.Framework; +global using Creek.HelpfulExtensions; \ No newline at end of file diff --git a/AdventOfCode/AOC.Tests/Y2022/Day01.cs b/AdventOfCode/AOC.Tests/Y2022/Day01.cs index bfffb08..ccc8f7e 100644 --- a/AdventOfCode/AOC.Tests/Y2022/Day01.cs +++ b/AdventOfCode/AOC.Tests/Y2022/Day01.cs @@ -6,9 +6,15 @@ namespace AOC.Tests.Y2022 public void Setup() { } + + [Test] + public void Part1() + { + Assert.Pass(); + } [Test] - public void Test1() + public void Part2() { Assert.Pass(); }