Unit Testing for Android : A Beginner’s Guide
<blockquote>
<p>“ONE TEST IS MORE THAN ZERO TESTS”</p>
</blockquote>
<p>Unit testing is a crucial phase of software development. It brings about a development paradigm known as <strong>Test Driven Development (TDD)</strong>. These tests typically test the business logic of applications.</p>
<blockquote>
<p>If you are not writing tests, you are writing an instant legacy code</p>
</blockquote>
<h1>Why do we write unit tests?</h1>
<ol>
<li>We make mistakes.</li>
<li>We want our code to work.</li>
<li>We want to develop faster with more confidence and fewer regressions.</li>
</ol>
<p>When it comes to Android, and the various mobile platforms in general, app testing can be a challenge. Implementing unit tests and following principles of test-driven development or similar can often feel unintuitive, at the least. Nonetheless, testing is important, and shouldn’t be taken for granted or ignored.</p>
<p><a href="https://medium.com/@asadleo1995/unit-testing-for-android-a-beginners-guide-f8681cba3c22">Visit Now</a></p>