Add geometry handling.
This commit is contained in:
parent
9c116b1efd
commit
c1389218f2
37 changed files with 294 additions and 278 deletions
|
@ -12,6 +12,7 @@ list(APPEND TestFiles
|
|||
audio/TestMidiReader.cpp
|
||||
database/TestDatabase.cpp
|
||||
graphics/TestOpenGlRendering.cpp
|
||||
graphics/TestRasterizer.cpp
|
||||
ipc/TestDbus.cpp
|
||||
image/TestPngWriter.cpp
|
||||
publishing/TestPdfWriter.cpp
|
||||
|
@ -24,6 +25,7 @@ list(APPEND TestNames
|
|||
TestMidiReader
|
||||
TestDatabase
|
||||
TestOpenGlRendering
|
||||
TestRasterizer
|
||||
TestDbus
|
||||
TestPngWriter
|
||||
TestPdfWriter
|
||||
|
|
|
@ -51,7 +51,7 @@ int main()
|
|||
#endif
|
||||
std::cout << "into entry point" << std::endl;
|
||||
TestCaseRunner runner;
|
||||
//runner.AddTestCase("TestWriteNav", std::make_unique<TestWriteWav>());
|
||||
runner.AddTestCase("TestWriteNav", std::make_unique<TestWriteWav>());
|
||||
runner.AddTestCase("TestAudioRender", std::make_unique<TestAudioRender>());
|
||||
|
||||
const auto testsPassed = runner.Run();
|
||||
|
|
9
test/graphics/TestRasterizer.cpp
Normal file
9
test/graphics/TestRasterizer.cpp
Normal file
|
@ -0,0 +1,9 @@
|
|||
#include "Image.h"
|
||||
#include "PngWriter.h"
|
||||
#include "DrawingManager.h"
|
||||
|
||||
int main()
|
||||
{
|
||||
DrawingManager manager;
|
||||
return 0;
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue