@Angello
  • Settings
  • Login
  • HomeSaveLogin
    Articles
    @Angello/Articles
    Articles I've found online that I like.
    The Practical Test Pyramid
    martinfowler.com
    Find out what kinds of automated tests you should implement for your application and learn by examples what these tests could look like.
    Go
    Load Testing vs. Performance Testing vs. Stress Testing
    stackify.com
    Just conducting one type of testing is generally not enough. For example, let’s say you decide to perform unit testing only. However, unit tests only verify business logic. Many other types of tests exist to verify the integration between components, such as integration tests.
    Go
    Yet another reason to prefer unit tests 😇
    dev.to
    Have you ever gotten so frustrated when writing a unit test that you gave up and wrote an end-to-end test instead?
    Go
    Unit Tests, How to Write Testable Code and Why it Matters
    www.toptal.com
    Writing unit tests can be tough, but it shouldn’t be. If your tests are hard to write, you probably have problems elsewhere. Untestable code is a sign of deeper design problems. In this article, Toptal developer Sergey Kolodiy delivers a comprehensive breakdown of what makes code hard to test, and …
    Go