Esempio n. 1
0
    public void FoeCard_CreatedWithGiven_WillHaveTheVariables()
    {
        var foe = new FoeCard("Foe Card", "Robber Knight", " ", 15, 20);

        foe.display();
        Assert.AreEqual("Foe Card", foe.type);
        Assert.AreEqual("Robber Knight", foe.name);
        Assert.AreEqual(" ", foe.texturePath);
        Assert.AreEqual(15, foe.minBP);
        Assert.AreEqual(20, foe.maxBP);

        // Use the Assert class to test conditions.
    }