Moved files to make zouba the only project.
[ptas] / tests / ut_gmocktest / painter.cpp
diff --git a/tests/ut_gmocktest/painter.cpp b/tests/ut_gmocktest/painter.cpp
deleted file mode 100644 (file)
index 66c456b..0000000
+++ /dev/null
@@ -1,16 +0,0 @@
-#include "painter.h"
-#include "turtle.h"
-
-Painter::Painter(Turtle *turtle) :
-        turtle(turtle)
-{
-}
-
-Painter::~Painter() {
-}
-
-bool Painter::DrawCircle(int x, int y, int radius) {
-    turtle->PenDown();
-    emit DrawCircleCalled(x, y, radius);
-    return true;
-}