mirror of
https://github.com/jcreek/advent-of-code.git
synced 2026-07-13 03:03:46 +00:00
22 lines
318 B
C#
22 lines
318 B
C#
namespace AOC.Tests.Y2022
|
|
{
|
|
public class Day01
|
|
{
|
|
[SetUp]
|
|
public void Setup()
|
|
{
|
|
}
|
|
|
|
[Test]
|
|
public void Part1()
|
|
{
|
|
Assert.Pass();
|
|
}
|
|
|
|
[Test]
|
|
public void Part2()
|
|
{
|
|
Assert.Pass();
|
|
}
|
|
}
|
|
} |