Start cleaning Grid class.
This commit is contained in:
parent
4fbe6279d1
commit
d4bb2b2744
27 changed files with 306 additions and 191 deletions
|
@ -9,6 +9,7 @@ set(TEST_MODULES
|
|||
core
|
||||
database
|
||||
fonts
|
||||
geometry
|
||||
graphics
|
||||
image
|
||||
ipc
|
||||
|
|
11
test/geometry/CMakeLists.txt
Normal file
11
test/geometry/CMakeLists.txt
Normal file
|
@ -0,0 +1,11 @@
|
|||
|
||||
set(GEOMETRY_UNIT_TEST_FILES
|
||||
geometry/TestGeometryCollection.cpp
|
||||
geometry/TestGrid.cpp
|
||||
PARENT_SCOPE
|
||||
)
|
||||
|
||||
set(GEOMETRY_UNIT_TEST_DEPENDENCIES
|
||||
geometry
|
||||
PARENT_SCOPE
|
||||
)
|
10
test/geometry/TestGeometryCollection.cpp
Normal file
10
test/geometry/TestGeometryCollection.cpp
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include "TestFramework.h"
|
||||
#include "TestUtils.h"
|
||||
|
||||
|
||||
|
||||
TEST_CASE(TestGeometryCollection, "geometry")
|
||||
{
|
||||
|
||||
|
||||
};
|
10
test/geometry/TestGrid.cpp
Normal file
10
test/geometry/TestGrid.cpp
Normal file
|
@ -0,0 +1,10 @@
|
|||
#include "TestFramework.h"
|
||||
#include "TestUtils.h"
|
||||
|
||||
|
||||
|
||||
TEST_CASE(TestGrid, "geometry")
|
||||
{
|
||||
|
||||
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue