Resolve WES-144 "Feedback justsign"

This commit is contained in:
Helena Van Breugel
2023-04-08 20:28:42 +00:00
parent 73c4756f19
commit 2b71bde592
56 changed files with 2966 additions and 1262 deletions

View File

@@ -27,9 +27,9 @@ public class SpellingBeeControllerTests
yield return new WaitForSeconds(0.2f);
Assert.AreEqual(0, spellingBeeController.CalculateScore());
spellingBeeController.NextWord();
Assert.AreEqual(5, spellingBeeController.CalculateScore());
Assert.AreEqual(0, spellingBeeController.CalculateScore());
spellingBeeController.NextLetter(true);
Assert.AreEqual(6, spellingBeeController.CalculateScore());
Assert.AreEqual(10, spellingBeeController.CalculateScore());
}
[UnityTest]