1
0
Fork 0
spacetac/src/core/TestTools.spec.ts
2019-11-21 23:14:27 +01:00

26 lines
917 B
TypeScript

import { testing } from "../common/Testing";
import { Ship } from "./Ship";
import { TestTools } from "./TestTools";
testing("TestTools", test => {
test.case("set ship health and power", check => {
let ship = new Ship();
check.equals(ship.getAttribute("hull_capacity"), 0);
check.equals(ship.getAttribute("shield_capacity"), 0);
check.equals(ship.getAttribute("power_capacity"), 0);
check.equals(ship.getValue("hull"), 0);
check.equals(ship.getValue("shield"), 0);
check.equals(ship.getValue("power"), 0);
TestTools.setShipModel(ship, 100, 200, 12);
check.equals(ship.getAttribute("hull_capacity"), 100);
check.equals(ship.getAttribute("shield_capacity"), 200);
check.equals(ship.getAttribute("power_capacity"), 12);
check.equals(ship.getValue("hull"), 100);
check.equals(ship.getValue("shield"), 200);
check.equals(ship.getValue("power"), 12);
});
});