Skip to content

Latest commit

 

History

History
39 lines (25 loc) · 2.07 KB

File metadata and controls

39 lines (25 loc) · 2.07 KB

Testing

Testing your app is an integral part of the app development process. By running tests against your app consistently, you can verify your app's correctness, functional behavior, and usability before you release it publicly.

I’ve come to love testing so much that I feel uncomfortable writing code in a codebase without tests. If your entire application does one thing (like school projects), then testing manually is still okay. But what happens when there are 100 different things the application does?

Think testing as documentation. It’s documentation for my assumptions about the code. Tests tell me how I (or the person before me) expect the code to work, and where all they expect things to go wrong.

Testing also provides you with the following advantages:

  • Rapid feedback on failures.
  • Early failure detection in the development cycle.
  • Safer code refactoring, letting you optimize code without worrying about regressions.
  • Stable development velocity, helping you minimize technical debt.

Fundamentals of Testing

JUnit4 rules with AndroidX Test

AndroidX Test includes a set of JUnit rules to be used with the AndroidJUnitRunner. JUnit rules provide more flexibility and reduce the boilerplate code required in tests.

Testing terminology