HomeSort by relevance Sort by last modified time
    Searched defs:TestRunType (Results 1 - 2 of 2) sorted by null

  /test/vti/dashboard/src/main/java/com/android/vts/util/
FilterUtil.java 281 TestRunEntity.TestRunType.PRESUBMIT.getNumber());
286 TestRunEntity.TestRunType.POSTSUBMIT.getNumber());
289 types.add(TestRunEntity.TestRunType.PRESUBMIT.getNumber());
290 types.add(TestRunEntity.TestRunType.POSTSUBMIT.getNumber());
  /test/vti/dashboard/src/main/java/com/android/vts/entity/
TestRunEntity.java 38 public enum TestRunType {
45 private TestRunType(int value) {
59 * Convert an ordinal value to a TestRunType.
62 * @return a TestRunType value.
64 public static TestRunType fromNumber(int value) {
66 return TestRunType.PRESUBMIT;
68 return TestRunType.POSTSUBMIT;
70 return TestRunType.OTHER;
81 * @return the TestRunType.
83 public static TestRunType fromBuildId(String buildId)
    [all...]

Completed in 205 milliseconds