Intersection work in progress
Review URL: https://codereview.appspot.com/5576043

git-svn-id: http://skia.googlecode.com/svn/trunk@3087 2bbb7eff-a529-9590-31e7-b0007b416f81
diff --git a/experimental/Intersection/Intersection_Tests.cpp b/experimental/Intersection/Intersection_Tests.cpp
new file mode 100644
index 0000000..e213de4
--- /dev/null
+++ b/experimental/Intersection/Intersection_Tests.cpp
@@ -0,0 +1,29 @@
+#include "CubicIntersection_TestData.h"
+#include "Intersection_Tests.h"
+
+void cubecode_test(int test);
+
+void Intersection_Tests() {
+    cubecode_test(1);
+    convert_testx();
+    // tests are in dependency / complexity order
+    Inline_Tests();
+    ConvexHull_Test();
+    ConvexHull_X_Test();
+
+    LineParameter_Test();
+    LineIntersection_Test();
+    LineQuadraticIntersection_Test();
+    LineCubicIntersection_Test();
+
+    QuadraticCoincidence_Test();
+    QuadraticReduceOrder_Test();
+    QuadraticBezierClip_Test();
+    QuadraticIntersection_Test();
+
+    CubicParameterization_Test();
+    CubicCoincidence_Test();
+    CubicReduceOrder_Test();
+    CubicBezierClip_Test();
+    CubicIntersection_Test();
+}