Home
last modified time | relevance | path

Searched refs:tests (Results 76 – 100 of 323) sorted by relevance

12345678910>>...13

/plugin/davcard/vendor/sabre/vobject/
H A D.travis.yml15 - phpunit --configuration tests/phpunit.xml
16 - ./bin/phpcs -p --standard=tests/phpcs/ruleset.xml lib/
/plugin/webdavclient/vendor/sabre/vobject/
H A D.travis.yml15 - phpunit --configuration tests/phpunit.xml
16 - ./bin/phpcs -p --standard=tests/phpcs/ruleset.xml lib/
/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/davcal/vendor/sabre/vobject/
H A D.travis.yml16 - phpunit --configuration tests/phpunit.xml
17 - ./bin/phpcs -p --standard=tests/phpcs/ruleset.xml lib/
/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/tests/TextUI/
H A Dphpt-stderr.phpt6 fwrite($stderr, 'PHPUnit must look at STDERR when running PHPT tests.');
8 PHPUnit must look at STDERR when running PHPT tests.
H A Dstop-on-warning-via-cli.phpt2 phpunit --stop-on-warning StopOnWarningTestSuite ./tests/_files/StopOnWarningTestSuite.php
22 No tests found in class "NoTestCases".
H A Dstop-on-warning-via-config.phpt2 …figuration_stop_on_warning.xml --stop-on-warning StopOnWarningTestSuite ./tests/_files/StopOnWarni…
23 No tests found in class "NoTestCases".
H A Dlog-junit.phpt2 phpunit --log-junit php://stdout --report-useless-tests StatusTest ../_files/StatusTest.php
8 $_SERVER['argv'][4] = '--report-useless-tests';
20 …<testsuite name="StatusTest" file="%s/StatusTest.php" tests="4" assertions="2" failures="1" errors…
/plugin/findologicxmlexport/vendor/phpunit/phpunit/tests/Regression/GitHub/
H A D2972.phpt2 …2972: Test suite shouldn't fail when it contains both *.phpt files and unconventionally named tests
18 OK (2 tests, 2 assertions)
H A D2158.phpt2 #2158: Failure to run tests in separate processes if a file included into main process contains con…
19 OK (2 tests, 2 assertions)
H A D1468.phpt6 $_SERVER['argv'][2] = '--disallow-todo-tests';
19 OK, but incomplete, skipped, or risky tests!
H A D863.phpt2 GH-863: Number of tests to run calculated incorrectly when --repeat is used
24 OK (150 tests, 150 assertions)
/plugin/findologicxmlexport/vendor/phpunit/phpunit/
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 D.php_cs.dist77 ->in(__DIR__ . '/tests/Framework')
78 ->in(__DIR__ . '/tests/Runner')
79 ->in(__DIR__ . '/tests/Util')
/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/Runner/Filter/
H A DGroup.php27 foreach ($suite->getGroupDetails() as $group => $tests) {
33 $tests
/plugin/csv/_test/
H A DREADME5 https://github.com/keboola/php-csv/tree/master/tests/Keboola/Csv
8 More tests, especially with various escape/enclosing/delimiter combos would
/plugin/findologicxmlexport/vendor/jms/serializer/
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/davcal/vendor/sabre/dav/
H A D.travis.yml17 - LOWEST_DEPS="--prefer-lowest" TEST_DEPS="tests/Sabre/"
32 - ./bin/phpunit --configuration tests/phpunit.xml $TEST_DEPS
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/
H A DDumperTest.php261 $tests = [];
272 $tests['stdClass'] = [$object, $object];
280 $tests['ArrayObject'] = [$arrayObject, $parsedArrayObject];
283 $tests['arbitrary-object'] = [$a, null];
285 return $tests;
/plugin/syntaxhighlighter3/sxh3/tests/
H A Dtasks.coffee6 grunt.registerTask 'express', 'Launches basic HTTP server for tests', ->
16 grunt.log.ok 'You can access tests on ' + 'http://localhost:3000'.blue + ' (Ctrl+C to stop)'
/plugin/findologicxmlexport/vendor/twig/twig/src/Node/
H A DIfNode.php24 …public function __construct(\Twig_NodeInterface $tests, \Twig_NodeInterface $else = null, $lineno,… argument
26 $nodes = ['tests' => $tests];
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/.ci/
H A Drun-repository.sh38 --volume=${repo}/tests:/usr/src/app/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());

12345678910>>...13