Exemplo n.º 1
0
    public void TestDontResetTotal()
    {
        StatType testStat = new StatType();

        testStat.Type = StatTypeEnum.ST_Total;
        StatTypeEnum resetLevel = StatTypeEnum.ST_Turn;

        Assert.AreEqual(false, testStat.NeedsReset(resetLevel));
    }
Exemplo n.º 2
0
    public void TestResetTurn()
    {
        StatType testStat = new StatType();

        testStat.Type = StatTypeEnum.ST_Turn;
        StatTypeEnum ResetLevel = StatTypeEnum.ST_Total;

        Assert.AreEqual(true, testStat.NeedsReset(ResetLevel));
    }