• Testing matters!

    Lack of testing leads to decrease of the quality of a software product, to a constant increase of the cost of quality assurance due to the occurrence of defects, to the customers’ loss as they don’t wish to use a low-quality product. Laravel has PHPUnit integration right from the box. Framework allows us to use a lot of assert-methods and helpers to simplify the apps testing. Many of Laravel apps are doing the backend logic and allowing JS-frameworks such as…
  • TestNG

    TestNG is a testing framework for the Java programming language. The design goal of TestNG is to cover a wider range of test categories: unit, functional, end-to-end, integration, etc., with more powerful and easy-to-use functionalities. TestNG's main features include:- Annotation support.- Support for parameterized and data-driven testing (with @DataProvider and/or XML configuration).- Support for multiple instances of the same test class (with @Factory)- Flexible execution model. TestNG can be run either by Ant via build.xml (with or without a test…