Add tests. Add getters and setters for entity and system count.

This commit is contained in:
bakpakin
2015-03-31 17:57:55 +08:00
parent c5c27c679c
commit 53ef1f2d36
2 changed files with 26 additions and 1 deletions
+14 -1
View File
@@ -151,7 +151,20 @@ describe('tiny-ecs:', function()
assert.equals(timePassed, 1)
assert.are_not.equal(entity1.xform.x, entityTemplate1.xform.x)
end)
it("Clear Entities", function()
world:clearEntities()
world:update(1)
assert.equals(0, world.getEntityCount())
end)
it("Clear Systems", function()
world:clearSystems()
world:update(1)
assert.equals(0, world.getSystemCount())
end)
end)
end)