Lines Matching full:unit
1 page.title=Creating Unit Tests
11 <li><a href="#testcase">Create a Test Case for Activity Unit Testing</a>
25 <p>An {@link android.app.Activity} unit test is an excellent way to quickly
28 system). A unit test generally tests the smallest possible unit of code
30 or network resources. For example, you can write a unit test to check
33 <p>Unit tests are generally not suitable for testing complex UI interaction
37 <p>This lesson shows how you can write a unit test to verify that an
49 framework and inject them into your unit tests. To learn more about the mocking
54 <h2 id="testcase">Create a Test Case for Activity Unit Testing</h2>
56 isolated testing of a single {@link android.app.Activity}. To create a unit
87 <p id="test_goals">Your unit testing goals might include:</p>