diff options
Diffstat (limited to 'Testing/include/modeling/EntityTest.h')
| -rw-r--r-- | Testing/include/modeling/EntityTest.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Testing/include/modeling/EntityTest.h b/Testing/include/modeling/EntityTest.h new file mode 100644 index 00000000..ff7293ff --- /dev/null +++ b/Testing/include/modeling/EntityTest.h @@ -0,0 +1,10 @@ +#pragma once +#include "modeling\Entity.h" + +#include <gtest\gtest.h> + +TEST(EntityTest, Constructor) +{ + Modeling::Entity e(10); + ASSERT_EQ(e.id, 10); +}
\ No newline at end of file |
