stuff-from-scratch/test/geometry/TestPath.cpp
2023-01-30 14:53:49 +00:00

13 lines
No EOL
303 B
C++

#include "TestFramework.h"
#include "TestUtils.h"
#include "Path.h"
#include "PostscriptReader.h"
TEST_CASE(TestPath, "geometry")
{
GeometryPath path;
PostscriptReader reader;
reader.read(&path, "M11 39h7.5V26.5h11V39H37V19.5L24 9.75 11 19.5Zm-3 3V18L24 6l16 12v24H26.5V29.5h-5V42Zm16-17.65Z");
};