StatTests CantAdjustToAboveMaxValue Method Delta Engine Documentation

Namespace: CreepyTowers.Tests.Stats
Assembly: CreepyTowers.Tests (in CreepyTowers.Tests.dll) Version: 1.1.1.0 (1.1.1)
Syntax

public void CantAdjustToAboveMaxValue()
Examples

[Test]
public void CantAdjustToAboveMaxValue()
{
    stat.Adjust(-20.0f);
    stat.Adjust(50.0f);
    Assert.AreEqual(100.0f, stat.Value);
}
See Also