Exemplo n.º 1
0
        public void TestGetPTOLeft()
        {
            PTOs t = new PTOs();

            t.usePTO(10);
            Assert.AreEqual(70, t.getCurrentTotalPTOs());
        }
Exemplo n.º 2
0
        public void TestGetPTOByName()
        {
            PTOs t = new PTOs();

            t.getPTOByName("Truc");
            Assert.AreEqual(80, t.getCurrentTotalPTOs());
        }
Exemplo n.º 3
0
        public void TestGetPTO()
        {
            PTOs t = new PTOs();

            Assert.AreEqual(80, t.getCurrentTotalPTOs());
        }