Namespace: TinyPlatformer
Assembly: TinyPlatformer (in TinyPlatformer.exe) Version: 1.1.1.0 (1.1.1)
Tests: TinyPlatformer.Tests.MapTests
2 unit tests call TinyPlatformer.Map.AddToScore(System.String)
Assembly: TinyPlatformer (in TinyPlatformer.exe) Version: 1.1.1.0 (1.1.1)
Syntax
Parameters
- type
- Type: System String
Remarks
Examples
[Test, CloseAfterFirstFrame] public void TreasureAddsOneToScore() { map.AddToScore("treasure"); Assert.AreEqual(1, map.score); Assert.AreEqual("Score: 1", map.scoreText.Text); }
[Test, CloseAfterFirstFrame] public void MonsterKillAddsThreeToScore() { map.AddToScore("monster"); Assert.AreEqual(3, map.score); Assert.AreEqual("Score: 3", map.scoreText.Text); }
See Also