Ejemplo n.º 1
0
 public void DwarfClericLevel6Returns3()
 {
     Feats feats = new Feats();
     int actual = feats.TotalFeats(6, "Dwarf");
     int expected = 3;
     Assert.AreEqual(expected, actual);
 }
Ejemplo n.º 2
0
 public void HumanFighterLevel10Returns11()
 {
     Feats feats = new Feats();
     int actual = feats.TotalFeats(10,"Human");
     int expected = 5;
     Assert.AreEqual(expected, actual);
 }