StatTests Adjust 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 Adjust()
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