File tree Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Expand file tree Collapse file tree 3 files changed +25
-3
lines changed Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ composer.phar
77docker-compose.yml
88.phpcs-cache
99.phpunit.result.cache
10- phpunit.xml.dist
10+ phpunit.xml
Original file line number Diff line number Diff line change @@ -10,12 +10,14 @@ nosso versionamento continua sendo [versionamento semântico](https://semver.org
1010- Corrigido:
1111 - A documentação referente a validação de inscrição estadual;
1212 - O arquivo ` composer.lock ` foi removido do ` .gitignore ` ;
13- - A opção depreciada do composer ` --no-suggest ` , foi removida do workflow Github actions.
13+ - A opção depreciada do composer ` --no-suggest ` , foi removida do workflow Github actions.
1414- Atualizado:
1515 - A versão mínima do PHP, e algumas dependências do projeto;
1616 - As classes de validação de formatos de documentos NIS e CNPJ;
1717 - O arquivo ` phpunit.xml ` foi adicionado ao ` .gitignore ` .
18- - Removido: O arquivo ` phpunit.xml ` .
18+ - Removido:
19+ - O arquivo ` phpunit.xml ` ;
20+ - O suporte a travisCI.
1921- Adicionado:
2022 - O arquivo ` phpunit.xml.dist ` ;
2123 - A possibilidade de rodar testes de unidade via comando ` composer testdox ` ;
Original file line number Diff line number Diff line change 1+ <?xml version =" 1.0" encoding =" UTF-8" ?>
2+ <phpunit xmlns : xsi =" http://www.w3.org/2001/XMLSchema-instance" bootstrap =" vendor/autoload.php" backupGlobals =" false" backupStaticAttributes =" false" colors =" true" convertErrorsToExceptions =" true" convertNoticesToExceptions =" true" convertWarningsToExceptions =" true" processIsolation =" false" stopOnFailure =" false" xsi : noNamespaceSchemaLocation =" https://schema.phpunit.de/9.3/phpunit.xsd" >
3+ <php >
4+ <env name =" XDEBUG_MODE" value =" coverage" />
5+ </php >
6+ <coverage processUncoveredFiles =" true" >
7+ <include >
8+ <directory >./src/</directory >
9+ </include >
10+ <report >
11+ <clover outputFile =" build/logs/clover.xml" />
12+ <html outputDirectory =" build/logs/html" lowUpperBound =" 35" highLowerBound =" 70" />
13+ </report >
14+ </coverage >
15+ <testsuites >
16+ <testsuite name =" Package Test Suite" >
17+ <directory suffix =" .php" >./tests/</directory >
18+ </testsuite >
19+ </testsuites >
20+ </phpunit >
You can’t perform that action at this time.
0 commit comments