Blog

Check our advices for tech
To configure PHPUnit, you need to follow these steps: Install PHPUnit: First, you need to install PHPUnit on your system. PHPUnit is available as a Composer package, so you can install it globally or on a per-project basis. To install it globally, run the following command: composer global require phpunit/phpunit Alternatively, you can install it locally...
Read More
The Test-Driven Development (TDD) cycle typically follows a series of steps, commonly known as the “Red-Green-Refactor” cycle. Here’s an overview of the TDD cycle: Write a Test: In TDD, you start by writing a test that defines the desired behavior or functionality of a small unit of code. The test is written before any implementation code...
Read More
Bug Detection: Tests are designed to detect bugs and issues in software. By systematically running tests, developers can identify and fix defects before the software is deployed. This helps prevent bugs from reaching end-users and reduces the likelihood of expensive and time-consuming bug fixes in production. Quality Assurance: Tests ensure that software meets the desired quality...
Read More
Repository with a basic example of usage of the 4 types using phpunit and webdriver: https://github.com/paulowinw/udemy_4_types_of_software_test Test-Driven Development (TDD) is a software development practice that emphasizes writing tests before writing the actual code. This approach helps ensure code quality, maintainability, and facilitates the development process. There are four main types of tests used in TDD: Unit...
Read More
Today the software community says that it will be almost impossible for a company to stay in the market without using software.Faced with this paradigm, we see technological evolution happening faster and faster.And then came the term that haunts great executives, the dreaded “Technological Disruption”.Market giants simply disappeared for not having eyes for eminent technologies in...
Read More
1 8 9 10 11