Home
last modified time | relevance | path

Searched refs:tests (Results 101 – 125 of 323) sorted by path

12345678910>>...13

/plugin/findologicxmlexport/vendor/jms/serializer/
H A DCHANGELOG.md144 - Risky tests in master [\#910](https://github.com/schmittjoh/serializer/issues/910)
183 - Fix risky tests [\#918](https://github.com/schmittjoh/serializer/pull/918) ([goetas](https://gith…
243 - Type casting tests [\#917](https://github.com/schmittjoh/serializer/pull/917) ([goetas](https://g…
244 - Explicitly set serialization precision for tests [\#899](https://github.com/schmittjoh/serializer…
350 - Run Travis tests against modern PHP [\#819](https://github.com/schmittjoh/serializer/pull/819) ([…
721 - Added tests to ensure SerializeNull policy [\#633](https://github.com/schmittjoh/serializer/pull/…
872 - Fixing tests for bugfixed PHP versions [\#375](https://github.com/schmittjoh/serializer/pull/375)…
983 - Added xmlns:xsi namespace and fixed tests [\#107](https://github.com/schmittjoh/serializer/pull/1…
1016 - Metadata stack tests [\#57](https://github.com/schmittjoh/serializer/pull/57) ([adrienbrault](htt…
1046 - Fix tests running in different environments [\#6](https://github.com/schmittjoh/serializer/pull/6…
H A DCONTRIBUTING.md26 You can run the unit-tests by calling `vendor/bin/phpunit`.
28 New features without tests can't be merged.
54 If you break the tests, we cannot merge your code,
79 commits such as "fix tests", "fix 2", "fix 3", etc.).
81 Pull requests without tests most probably will not be merged.
82 Documentation PRs obviously do not require tests.
/plugin/findologicxmlexport/vendor/myclabs/deep-copy/
H A DREADME.md38 1. [Tests](#tests)
372 Running the tests is simple:
/plugin/findologicxmlexport/vendor/phpdocumentor/reflection-docblock/
H A Deasy-coding-standard.neon31 - */tests/**
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/
H A D.php_cs5 ->in('tests')
H A DChangeLog-4.0.md38 * The check for unintentionally covered code is no longer performed for `@medium` and `@large` tests
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/
H A DCodeCoverage.php109 private $tests = []; variable in SebastianBergmann\\CodeCoverage\\CodeCoverage
174 $this->tests = [];
221 return $this->tests;
227 * @param array $tests
229 public function setTests(array $tests) argument
231 $this->tests = $tests;
361 $this->tests[$id] = ['size' => $size, 'status' => $status];
411 $this->tests = array_merge($this->tests, $that->getTests());
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Node/
H A DBuilder.php44 * @param array $tests
47 private function addItems(Directory $root, array $items, array $tests, $cacheTokens) argument
54 $root->addFile($key, $value, $tests, $cacheTokens);
58 $this->addItems($child, $value, $tests, $cacheTokens);
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/
H A Dstyle.css35 .table tbody tr.covered-by-large-tests, li.covered-by-large-tests, tr.success, td.success, li.succe…
39 .table tbody tr.covered-by-medium-tests, li.covered-by-medium-tests {
43 .table tbody tr.covered-by-small-tests, li.covered-by-small-tests {
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Xml/
H A DFacade.php121 foreach ($file->getCoverageData() as $line => $tests) {
122 if (!is_array($tests) || count($tests) == 0) {
128 foreach ($tests as $test) {
193 private function processTests(array $tests) argument
197 foreach ($tests as $test => $result) {
H A DProject.php50 'tests'
/plugin/findologicxmlexport/vendor/phpunit/phpunit-mock-objects/
H A D.php_cs5 ->in('tests')
/plugin/findologicxmlexport/vendor/phpunit/phpunit/
H A D.php_cs.dist77 ->in(__DIR__ . '/tests/Framework')
78 ->in(__DIR__ . '/tests/Runner')
79 ->in(__DIR__ . '/tests/Util')
H A D.travis.yml46 - xmllint --noout --schema phpunit.xsd tests/_files/configuration.xml
47 - xmllint --noout --schema phpunit.xsd tests/_files/configuration_empty.xml
48 - xmllint --noout --schema phpunit.xsd tests/_files/configuration_xinclude.xml -xinclude
H A DChangeLog-5.7.md11 …2972): PHPUnit crashes when test suite contains both `.phpt` files and unconventionally named tests
19 …here is a test class with `@group` and provider throwing exception in it, tests are run with `--ex…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Extensions/
H A DGroupTestSuite.php36 $tests = new RecursiveIteratorIterator(
41 foreach ($tests as $test) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/
H A DTestSuite.php66 protected $tests = []; variable in PHPUnit_Framework_TestSuite
178 if (empty($this->tests)) {
213 $this->tests[] = $test;
795 if (isset($this->tests[$index])) {
796 return $this->tests[$index];
807 public function tests() function in PHPUnit_Framework_TestSuite
809 return $this->tests;
815 * @param array $tests
817 public function setTests(array $tests) argument
819 $this->tests = $tests;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Framework/TestSuite/
H A DDataProvider.php20 foreach ($this->tests as $test) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Runner/Filter/
H A DGroup.php27 foreach ($suite->getGroupDetails() as $group => $tests) {
33 $tests
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/TestDox/
H A DResultPrinter.php34 protected $tests = []; variable in PHPUnit_Util_TestDox_ResultPrinter
261 $this->tests = [];
291 if (!isset($this->tests[$this->currentTestMethodPrettified])) {
293 $this->tests[$this->currentTestMethodPrettified]['success'] = 1;
294 $this->tests[$this->currentTestMethodPrettified]['failure'] = 0;
296 $this->tests[$this->currentTestMethodPrettified]['success'] = 0;
297 $this->tests[$this->currentTestMethodPrettified]['failure'] = 1;
301 $this->tests[$this->currentTestMethodPrettified]['success']++;
303 $this->tests[$this->currentTestMethodPrettified]['failure']++;
313 foreach ($this->tests as $name => $data) {
/plugin/findologicxmlexport/vendor/phpunit/phpunit/src/Util/
H A DTestSuiteIterator.php24 protected $tests; variable in PHPUnit_Util_TestSuiteIterator
31 $this->tests = $testSuite->tests();
49 return $this->position < count($this->tests);
69 return $this->valid() ? $this->tests[$this->position] : null;
88 $this->tests[$this->position]
99 return $this->tests[$this->position] instanceof PHPUnit_Framework_TestSuite;
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D1149.phpt20 OK (2 tests, 2 assertions)
H A D1335.phpt19 OK (12 tests, 12 assertions)
H A D1337.phpt19 OK (2 tests, 2 assertions)
H A D1348.phpt12 $_SERVER['argv'][] = '--report-useless-tests';

12345678910>>...13