Files
Bomberman/lib/wal/tests/EntityTests.cpp
2021-05-17 12:31:02 +02:00

16 lines
326 B
C++

//
// Created by Zoe Roux on 5/17/21.
//
#include <catch2/catch.hpp>
#include "Entity/Entity.hpp"
#include "Component/Basics/PositionComponent.hpp"
using namespace WAL;
using namespace WAL::Components;
TEST_CASE("Get component", "[Entity/getComponent]")
{
Entity entity("Bob");
entity.addComponent<PositionComponent>();
}