Home | History | Annotate | Download | only in compatibility

Lines Matching full:code

22 to get and build the Android source code but specify <code>-b android-4.3_r1</code>
23 when issuing the <code>repo init</code> command. This assures that your CTS
28 <code>.classpath</code> file rather than copying the one from the development
30 <pre><code>cd /path/to/android/root
33 </code></pre>
34 <p>This <code>.classpath</code> file will contain both the Android framework
39 <pre><code>cd /path/to/android/root
42 </code></pre>
44 <pre><code>run cts --plan CTS
45 </code></pre>
50 <code>cts/tests/tests</code> directory. You will see that CTS tests mostly follow the same
62 have Java package names with a <code>cts</code> suffix and class
63 names with the <code>Test</code> suffix. Each test case consists of
67 <p>For example, the CTS test for <code>android.widget.TextView</code> is
68 <code>android.widget.cts.TextViewTest</code> found under the
69 <code>cts/tests/tests/widget/src/android/widget/cts</code> directory with its
70 Java package name as <code>android.widget.cts</code> and its class name as
71 <code>TextViewTest</code>. The <code>TextViewTest</code> class has a test called <code>testSetText</code>
73 calls the <code>setSingleLine</code> method. Each of those tests have <code>@TestTargetNew</code>
77 <code>android.net.cts.ListeningPortsTest</code>, is in the <code>android.net.cts</code>, because it
78 is network related even though there is no <code>android.net.ListeningPorts</code> class.
86 test. In that case, refer to the example under <code>cts/tests/tests/example</code> and
88 module name from its <code>Android.mk</code> to <code>CTS_COVERAGE_TEST_CASE_LIST</code> in
89 <code>cts/CtsTestCaseList.mk</code>. This Makefile is used by <code>build/core/tasks/cts.mk</code>
94 <code>cts/tests/src</code> directory. These stubs aren't separated into separate test
95 APKs like the tests, so the <code>cts/tests/src</code> directory does not have additional
99 <code>GLSurfaceViewStubActivity</code> belongs in the <code>android.opengl.cts</code> package under
100 the <code>cts/tests/src/android/opengl</code> directory.</p>