Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions EvolutionModel/EvolutionModel.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@
<Compile Include="IEatable.cs" />
<Compile Include="IEater.cs" />
<Compile Include="IFoodContainer.cs" />
<Compile Include="Species.cs" />
<Compile Include="WateringHole.cs" />
<Compile Include="Foodbag.cs" />
<Compile Include="Properties\AssemblyInfo.cs" />
Expand Down
12 changes: 12 additions & 0 deletions EvolutionModel/Species.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace Evolution.Model
{
public class Species: IEatable, IEater, IFoodContainer{

}
}
98 changes: 98 additions & 0 deletions EvolutionModelTests/SpeciesTests.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,98 @@
using System;
using System.Collections.Generic;
using System.Text;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Evolution.Model;

namespace EvolutionModelTests
{
[TestClass]
public class SpeciesTests
{
[TestMethod]
public void SpeciesBegintZonderEten()
{

}

[TestMethod]
public void SpeciesBegintMetEenPopulationEnEenSize()
{

}

[TestMethod]
public void SpeciesCanAddPopulation()
{

}

[TestMethod]
public void SpeciesCanAddSize()
{

}

[TestMethod]
public void SpeciesCanEat()
{

}

[TestMethod]
public void SpeciesCanDecreasePopulation()
{

}

[TestMethod]
public void SpeciesDiesIfPopulationIsZero()
{

}

[TestMethod]
public void SpeciesCanPutFoodInBag()
{

}

[TestMethod]
public void SpeciesDecreasesIfHungry()
{

}

[TestMethod]
public void SpeciesCantEatBiggerSpecies()
{

}

[TestMethod]
public void SpeciesDecreasesIfEaten()
{

}

[TestMethod]
public void SpeciesCantEatMoreThanPopulation()
{

}

[TestMethod]
public void SpeciesCanHaveTraits()
{

}

[TestMethod]
public void SpeciesCanRemoveTraits()
{

}

}
}