Namespace: CreepyTowers.Stats
Assembly: CreepyTowers (in CreepyTowers.exe) Version: 1.1.1.0 (1.1.1)
Tests: CreepyTowers.Tests.Stats.StatTests
5 unit tests call CreepyTowers.Stats.Stat.Value
Assembly: CreepyTowers (in CreepyTowers.exe) Version: 1.1.1.0 (1.1.1)
Syntax
Property Value
Type: SingleRemarks
Examples
[Test] public void Adjust() { stat.Adjust(-5.0f); Assert.AreEqual(95.0f, stat.Value); Assert.AreEqual(100.0f, stat.MaxValue); }
[Test] public void CantAdjustToAboveMaxValue() { stat.Adjust(-20.0f); stat.Adjust(50.0f); Assert.AreEqual(100.0f, stat.Value); }
[Test] public void CantAdjustToBelowZero() { stat.Adjust(-110.0f); Assert.AreEqual(0.0f, stat.Value); }
See Also