Skip to content

Commit

Permalink
adding layout of 'GameOfLifeKata'
Browse files Browse the repository at this point in the history
  • Loading branch information
garora committed May 16, 2014
1 parent a20a10d commit 188217a
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
namespace TDD_Katas_project.GameOfLifeKata
{
public class GameOfLife
{
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
using NUnit.Framework;

namespace TDD_Katas_project.GameOfLifeKata
{
[TestFixture]
[Category("GameOfLifeKata")]
public class TestGameOfLife
{
[TestFixtureSetUp]
public void Setup()
{
//Setup
}
[TestFixtureTearDown]
public void TearDown()
{
//TearDown
}
}
}
2 changes: 2 additions & 0 deletions TDD-Katas-project/TDD-Katas-project/TDD-Katas-project.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,8 @@
<Compile Include="DiversionKata\TestDiversion.cs" />
<Compile Include="FizzBuzzKata\FizzBuzz.cs" />
<Compile Include="FizzBuzzKata\TestFizzBuzz.cs" />
<Compile Include="GameOfLifeKata\GameOfLife.cs" />
<Compile Include="GameOfLifeKata\TestGameOfLife.cs" />
<Compile Include="OddEvenKata\OddEven.cs" />
<Compile Include="OddEvenKata\TestOddEven.cs" />
<Compile Include="StringCalculator\Calculator.cs" />
Expand Down

0 comments on commit 188217a

Please sign in to comment.