1 / 28

Testing and Debugging, and Backwards Compatibility

Android Developer Fundamentals. Testing and Debugging, and Backwards Compatibility. Lesson 3. This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License. Android Developer Fundamentals. 3.2 Testing Your App.

craigc
Télécharger la présentation

Testing and Debugging, and Backwards Compatibility

An Image/Link below is provided (as is) to download presentation Download Policy: Content on the Website is provided to you AS IS for your information and personal use and may not be sold / licensed / shared on other websites without getting consent from its author. Content is provided to you AS IS for your information and personal use only. Download presentation by click this link. While downloading, if for some reason you are not able to download a presentation, the publisher may have deleted the file from their server. During download, if you can't get a presentation, the file might be deleted by the publisher.

E N D

Presentation Transcript


  1. Android Developer Fundamentals Testing and Debugging, and Backwards Compatibility Lesson 3 This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License Android Developer Fundamentals

  2. 3.2 Testing Your App This work is licensed under a Creative Commons Attribution-NonCommercial 4.0 International License Testing your app Android Developer Fundamentals

  3. Contents • Why testing is worth your time • Unit testing Note: User interface testing (instrumented testing) is covered in a later chapter

  4. Testing Rocks

  5. Cost to Fix Why should you test your app? Catch bugs early! $1000 • Find and fix issues early • Less costly • Takes less effort • Costs to fix bugs increases with time $100 $10 Release Code Specification Design QA $1 Discovery Time

  6. Types of testing • Levels of Testing • Component, integration, protocol, system • Types of Testing • Installation, compatibility, regression, acceptance • Performance, scalability, usability, security • User interface and interaction tests • Automated UI testing tools • Instrumented testing (covered later)

  7. Test-Driven Development (TDD) • Define a test case for a requirement • Write tests that assert all conditions of the test case • Write code against the test • Iterate on and refactor code until it passes the test • Repeat until all requirements have test cases, all tests pass, and all functionality has been implemented

  8. Tests in your project Android Studio creates three source sets for your project • main—code and resources • test—local unit tests • androidTest—instrumented tests

  9. Local Unit Tests

  10. Unit tests • Smallest testable parts of your program • Isolate each component and demonstrate the individual parts are correct • Java Method tests Results Inputs Java method Graceful Failure

  11. Local unit tests in JUnit • Compiled and run entirely on your local machine with the Java Virtual Machine (JVM) • Use to test the parts of your app (such as the internal logic) that do not need access to the Android framework or an Android device or emulator, or those for which you can create fake (mock) objects that pretend to behave like the framework equivalents • Unit tests are written with JUnit, a common unit testing framework for Java.

  12. Local unit tests in your project • Tests are in the same package as the associated application class. • Only org.junit imported - no Android classes • Project path for test classes: .../module-name/src/test/java/

  13. Imports for JUnit // Annotations import org.junit.Before; import org.junit.Test; import org.junit.runner.RunWith; // Basic JUnit4 test runner import org.junit.runners.JUnit4; // assertThat method import static org.junit.Assert.assertThat;

  14. Testing class /** * JUnit4 unit tests for the calculator logic. * These are local unit tests; no device needed */ @RunWith(JUnit4.class) // Specify the test runner public class CalculatorTest { // Name it what you are testing }

  15. ExampleTest / ** * Test for simple addition. * Each test is identified by a @Test annotation. */ @Test public void addTwoNumbers() { double resultAdd = mCalculator.add(1d, 1d); assertThat(resultAdd, is(equalTo(2d))); }

  16. @Test Annotation • Tells JUnit this method is a test method (JUnit 4) • Information to the test runner • Not necessary anymore to prefix test methods with "test"

  17. setUp() method /** * Set up the environment for testing */ @Before public void setUp() { mCalculator = new Calculator(); } • Sets up environment for testing • Initialize variables and objects used in multiple tests

  18. tearDown() method /** * Release external resources */ @After public void tearDown() { .... } • Frees resources

  19. Running Tests in Android Studio

  20. Starting a test run • Right-click test class and select Run 'app_name' test • Right-click test package and select Run tests in 'package'

  21. Passing and failing Pass Result details Fail Fail Pass

  22. Testing Floating Point Results

  23. Testing Floating Point • Be careful with floating point tests • Recall from basic computer science: • Floating point arithmetic is not accurate in binary

  24. Test fails with floating point numbers

  25. Fix test with floating point numbers They are the same within .0005 in this test

  26. Learn more • Getting Started with Testing • Best Practices for Testing • Building Local Unit Tests • JUnit 4 Home Page • JUnit 4 API Reference • Android Testing Codelab • Android Tools Protip: Test Size Annotations • Android Testing Support - Testing Patterns (video)

  27. What's Next? • Concept Chapter: 3.2 C Testing Your App • Practical: 3.2 P Testing Apps with Unit Tests

  28. END

More Related