Home | History | Annotate | Download | only in location
      1 package com.android.cts.verifier.location;
      2 
      3 import com.android.cts.verifier.location.base.GnssCtsTestActivity;
      4 import android.location.cts.GnssStatusTest;
      5 
      6 /**
      7  * Activity to execute CTS GnssStatusTest.
      8  * It is a wrapper for {@link GnssStatusTest} running with AndroidJUnitRunner.
      9  */
     10 
     11 public class GnssStatusTestsActivity extends GnssCtsTestActivity {
     12   public GnssStatusTestsActivity() {
     13     super(GnssStatusTest.class);
     14   }
     15 }
     16