TestMapSuite.java 287 B

123456789101112131415
  1. package com.example.yiupang.freefoodfinder;
  2. /**
  3. * Created by Fernando on 6/6/17.
  4. */
  5. import org.junit.runner.RunWith;
  6. import org.junit.runners.Suite;
  7. @RunWith(Suite.class)
  8. @Suite.SuiteClasses({TestMapScreenForLoop.class, TestMapScreenWhileLoop.class})
  9. public class TestMapSuite
  10. {
  11. }