mirror of
https://github.com/devZoGok/PlanetFleet.git
synced 2026-08-26 19:43:29 +00:00
26 lines
507 B
C++
26 lines
507 B
C++
#ifndef PATHFINDER_TEST_H
|
|
#define PATHFINDER_TEST_H
|
|
|
|
#include <cppunit/TestFixture.h>
|
|
#include <cppunit/extensions/HelperMacros.h>
|
|
|
|
namespace battleship{
|
|
class Pathfinder;
|
|
|
|
class PathfinderTest : public CppUnit::TestFixture{
|
|
CPPUNIT_TEST_SUITE(PathfinderTest);
|
|
CPPUNIT_TEST(testFindPath);
|
|
CPPUNIT_TEST_SUITE_END();
|
|
|
|
public:
|
|
PathfinderTest(){}
|
|
void testFindPath();
|
|
void setUp();
|
|
void tearDown();
|
|
private:
|
|
Pathfinder *pathfinder = nullptr;
|
|
};
|
|
}
|
|
|
|
#endif
|