-
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
3b78d54
commit c59d3a2
Showing
7 changed files
with
36 additions
and
61 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
{"version":"pest_2.34.6","defects":[],"times":{"P\\Tests\\TurnstileCaptchaTest::__pest_evaluable_it_has_correct_response_name":0,"P\\Tests\\TurnstileCaptchaTest::__pest_evaluable_it_can_give_captcha_class":0,"P\\Tests\\TurnstileCaptchaTest::__pest_evaluable_it_can_be_failed":0.008,"P\\Tests\\TurnstileCaptchaTest::__pest_evaluable_it_can_be_succeed":0,"P\\Tests\\TurnstileCaptchaTest::__pest_evaluable_it_can_give_captcha_javascript":0,"P\\Tests\\HCaptchaTest::__pest_evaluable_it_can_give_captcha_class":0,"P\\Tests\\HCaptchaTest::__pest_evaluable_it_can_be_failed":0.001,"P\\Tests\\HCaptchaTest::__pest_evaluable_it_can_give_captcha_javascript#('fr', '<script src=\"https:\/\/js.hcapt\u2026cript>')":0,"P\\Tests\\HCaptchaTest::__pest_evaluable_it_can_give_captcha_javascript#('en-GB', '<script src=\"https:\/\/js.hcapt\u2026cript>')":0,"P\\Tests\\HCaptchaTest::__pest_evaluable_it_can_give_captcha_javascript#('en', '<script src=\"https:\/\/js.hcapt\u2026cript>')":0,"P\\Tests\\HCaptchaTest::__pest_evaluable_it_can_be_succeed":0,"P\\Tests\\HCaptchaTest::__pest_evaluable_it_has_correct_response_name":0,"P\\Tests\\CaptchaTest::__pest_evaluable_it_can_give_correct_driver":0,"P\\Tests\\CaptchaTest::__pest_evaluable_it_can_verify_captcha":0,"P\\Tests\\CaptchaTest::__pest_evaluable_it_can_throw_error_on_incorrect_driver":0,"P\\Tests\\CaptchaTest::__pest_evaluable_it_can_be_faked":0,"P\\Tests\\ValidationTest::__pest_evaluable_it_can_be_fail":0.004,"P\\Tests\\ValidationTest::__pest_evaluable_it_can_be_pass":0,"P\\Tests\\ValidationTest::__pest_evaluable_it_can_have_custom_error_messages#('Failed.')":0,"P\\Tests\\ValidationTest::__pest_evaluable_it_can_have_custom_error_messages#('Validation Failed.')":0,"P\\Tests\\ValidationTest::__pest_evaluable_it_can_validate_with_alias":0,"P\\Tests\\FakeCaptchaTest::__pest_evaluable_it_can_be_succeed":0,"P\\Tests\\FakeCaptchaTest::__pest_evaluable_it_can_be_failed":0.001,"P\\Tests\\FakeCaptchaTest::__pest_evaluable_it_can_give_captcha_class":0.014,"P\\Tests\\FakeCaptchaTest::__pest_evaluable_it_can_give_fake_captcha_javascript":0,"P\\Tests\\BladeTest::__pest_evaluable_it_can_give_captcha_container":0.03,"P\\Tests\\BladeTest::__pest_evaluable_it_can_give_captcha_javascript":0.002,"P\\Tests\\ReCaptchaTest::__pest_evaluable_it_can_be_failed":0.001,"P\\Tests\\ReCaptchaTest::__pest_evaluable_it_has_correct_response_name":0,"P\\Tests\\ReCaptchaTest::__pest_evaluable_it_can_give_captcha_class":0,"P\\Tests\\ReCaptchaTest::__pest_evaluable_it_can_give_captcha_javascript#('fr', '<script src=\"https:\/\/www.goog\u2026cript>')":0,"P\\Tests\\ReCaptchaTest::__pest_evaluable_it_can_give_captcha_javascript#('en-GB', '<script src=\"https:\/\/www.goog\u2026cript>')":0,"P\\Tests\\ReCaptchaTest::__pest_evaluable_it_can_give_captcha_javascript#('en', '<script src=\"https:\/\/www.goog\u2026cript>')":0,"P\\Tests\\ReCaptchaTest::__pest_evaluable_it_can_be_succeed":0.001}} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,23 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<phpunit | ||
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
xsi:noNamespaceSchemaLocation="vendor/phpunit/phpunit/phpunit.xsd" | ||
backupGlobals="false" | ||
backupStaticAttributes="false" | ||
bootstrap="vendor/autoload.php" | ||
colors="true" | ||
convertErrorsToExceptions="true" | ||
convertNoticesToExceptions="true" | ||
convertWarningsToExceptions="true" | ||
processIsolation="false" | ||
stopOnFailure="false" | ||
executionOrder="random" | ||
failOnWarning="true" | ||
failOnRisky="true" | ||
failOnEmptyTestSuite="true" | ||
beStrictAboutOutputDuringTests="true" | ||
verbose="true" | ||
> | ||
<testsuites> | ||
<testsuite name="VendorName Test Suite"> | ||
<directory suffix=".php">./tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<coverage> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
<report> | ||
<html outputDirectory="build/coverage"/> | ||
<text outputFile="build/coverage.txt"/> | ||
<clover outputFile="build/logs/clover.xml"/> | ||
</report> | ||
</coverage> | ||
<logging> | ||
<junit outputFile="build/report.junit.xml"/> | ||
</logging> | ||
<phpunit xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="https://schema.phpunit.de/10.5/phpunit.xsd" backupGlobals="false" bootstrap="vendor/autoload.php" colors="true" processIsolation="false" stopOnFailure="false" executionOrder="random" failOnWarning="true" failOnRisky="true" failOnEmptyTestSuite="true" beStrictAboutOutputDuringTests="true" cacheDirectory=".phpunit.cache" backupStaticProperties="false"> | ||
<testsuites> | ||
<testsuite name="Rahul900day Test Suite"> | ||
<directory suffix=".php">./tests/</directory> | ||
</testsuite> | ||
</testsuites> | ||
<coverage> | ||
<report> | ||
<html outputDirectory="build/coverage"/> | ||
<text outputFile="build/coverage.txt"/> | ||
<clover outputFile="build/logs/clover.xml"/> | ||
</report> | ||
</coverage> | ||
<logging> | ||
<junit outputFile="build/report.junit.xml"/> | ||
</logging> | ||
<source> | ||
<include> | ||
<directory suffix=".php">./src</directory> | ||
</include> | ||
</source> | ||
</phpunit> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.