mirror of
https://github.com/zoriya/Bomberman.git
synced 2025-12-21 13:55:10 +00:00
16 lines
326 B
C++
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>();
|
|
} |