浏览代码

Test suite for map.

Fernando Diaz 9 年之前
父节点
当前提交
2655abd017
共有 1 个文件被更改,包括 15 次插入0 次删除
  1. 15 0
      app/src/test/java/com/example/yiupang/freefoodfinder/TestMapSuite.java

+ 15 - 0
app/src/test/java/com/example/yiupang/freefoodfinder/TestMapSuite.java

@@ -0,0 +1,15 @@
+package com.example.yiupang.freefoodfinder;
+
+/**
+ * Created by Fernando on 6/6/17.
+ */
+
+import org.junit.runner.RunWith;
+import org.junit.runners.Suite;
+
+@RunWith(Suite.class)
+@Suite.SuiteClasses({TestMapScreenForLoop.class, TestMapScreenWhileLoop.class})
+public class TestMapSuite
+{
+
+}