Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 221bc127 authored by Daisuke Miyakawa's avatar Daisuke Miyakawa
Browse files

Add a new TestSuites: VCardTests

Now, the following command is available.
adb shell am instrument -w -e class com.android.unit_tests.vcard.VCardTests com.android.unit_tests/android.test.InstrumentationTestRunner

Internal Issuer number: 2160039
parent 347daf3a
Loading
Loading
Loading
Loading
+15 −0
Original line number Diff line number Diff line
package com.android.unit_tests.vcard;

import com.android.unit_tests.AndroidTests;

import android.test.suitebuilder.TestSuiteBuilder;

import junit.framework.TestSuite;

public class VCardTests extends TestSuite {
    public static TestSuite suite() {
        TestSuiteBuilder suiteBuilder = new TestSuiteBuilder(AndroidTests.class);
        suiteBuilder.includeAllPackagesUnderHere();
        return suiteBuilder.build();
    }
}
 No newline at end of file