Friday, July 31, 2020

Mutation Testing Framework

http://yoursite.com //laravel/vendor/phpunit/phpunit/phpunit.xsd
 
IP: 51.210.161.21 Hostname: ip21.ip-51-210-161.eu 
Human/Bot: Human


a friends site kept seeing this what is this?

Infection is a PHP mutation testing framework based on AST (Abstract Syntax Tree) mutations. It works as a CLI tool and can be executed from your project’s root.

Mutation testing is a testing methodology that involves modifying a program in small ways and analyzing reactions of the test suite on these modifications. If tests pass after the code is changed, then we have either not covered line of code or the tests are not very efficient for the mutated piece of code.

PHPUnit is a programmer-oriented testing framework for PHP. It is an instance of the xUnit architecture for unit testing frameworks.