public void Adding_Points_To_Rack_Sets_Point() { var testRack = new Rack("test rack", true); Assert.Equal(0, testRack.Score); // Add points testRack.AddPoints(5); Assert.Equal(5, testRack.Score); }