1 /* 2 * Copyright (C) 2011 The Android Open Source Project 3 * 4 * Licensed under the Apache License, Version 2.0 (the "License"); 5 * you may not use this file except in compliance with the License. 6 * You may obtain a copy of the License at 7 * 8 * http://www.apache.org/licenses/LICENSE-2.0 9 * 10 * Unless required by applicable law or agreed to in writing, software 11 * distributed under the License is distributed on an "AS IS" BASIS, 12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13 * See the License for the specific language governing permissions and 14 * limitations under the License. 15 */ 16 package com.android.cts.xmlgenerator; 17 18 import java.util.ArrayList; 19 import java.util.Collection; 20 import java.util.Collections; 21 import java.util.List; 22 23 class TestCase implements Comparable<TestCase> { 24 25 private final String mName; 26 27 private final List<Test> mTests = new ArrayList<Test>(); 28 TestCase(String name)29 public TestCase(String name) { 30 mName = name; 31 } 32 getName()33 public String getName() { 34 return mName; 35 } 36 addTest(String testName, int timeout)37 public void addTest(String testName, int timeout) { 38 mTests.add(new Test(testName, timeout)); 39 } 40 getTests()41 public Collection<Test> getTests() { 42 return Collections.unmodifiableCollection(mTests); 43 } 44 45 @Override compareTo(TestCase another)46 public int compareTo(TestCase another) { 47 return getName().compareTo(another.getName()); 48 } 49 countTests()50 public int countTests() { 51 return mTests.size(); 52 } 53 } 54