-
Notifications
You must be signed in to change notification settings - Fork 866
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
PHP: Fixed incorrect display of skipped tests in the Test Results win…
…dow for Codeception.
- Loading branch information
Showing
5 changed files
with
96 additions
and
1 deletion.
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
13 changes: 13 additions & 0 deletions
13
php/php.codeception/test/unit/data/codeception-log-skipped-functional-tests.xml
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,13 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<testsuites> | ||
<testsuite name="functional" tests="6" assertions="7" errors="0" failures="0" skipped="1" useless="0" time="0.190654"> | ||
<testcase name="openLoginPage" class="LoginFormCest" file="/var/www/new_yyi2/basic/tests/functional/LoginFormCest.php" feature="open login page" time="0.000000" assertions="0"> | ||
<skipped/> | ||
</testcase> | ||
<testcase name="internalLoginById" class="LoginFormCest" file="/var/www/new_yyi2/basic/tests/functional/LoginFormCest.php" feature="internal login by id" time="0.084995" assertions="1"/> | ||
<testcase name="internalLoginByInstance" class="LoginFormCest" file="/var/www/new_yyi2/basic/tests/functional/LoginFormCest.php" feature="internal login by instance" time="0.020276" assertions="1"/> | ||
<testcase name="loginWithEmptyCredentials" class="LoginFormCest" file="/var/www/new_yyi2/basic/tests/functional/LoginFormCest.php" feature="login with empty credentials" time="0.035114" assertions="2"/> | ||
<testcase name="loginWithWrongCredentials" class="LoginFormCest" file="/var/www/new_yyi2/basic/tests/functional/LoginFormCest.php" feature="login with wrong credentials" time="0.026634" assertions="1"/> | ||
<testcase name="loginSuccessfully" class="LoginFormCest" file="/var/www/new_yyi2/basic/tests/functional/LoginFormCest.php" feature="login successfully" time="0.023634" assertions="2"/> | ||
</testsuite> | ||
</testsuites> |
20 changes: 20 additions & 0 deletions
20
php/php.codeception/test/unit/data/codeception-log-skipped-unit-tests.xml
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,20 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<testsuites> | ||
<testsuite name="unit" tests="13" assertions="74" errors="0" failures="0" skipped="1" useless="0" time="0.043183"> | ||
<testcase name="testSingleErrorMessage" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.022930" assertions="5"/> | ||
<testcase name="testMultipleErrorMessages" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.001102" assertions="0"> | ||
<skipped/> | ||
</testcase> | ||
<testcase name="testSingleDangerMessage" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.001268" assertions="5"/> | ||
<testcase name="testMultipleDangerMessages" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.001294" assertions="6"/> | ||
<testcase name="testSingleSuccessMessage" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.001147" assertions="5"/> | ||
<testcase name="testMultipleSuccessMessages" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.001416" assertions="6"/> | ||
<testcase name="testSingleInfoMessage" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.002299" assertions="5"/> | ||
<testcase name="testMultipleInfoMessages" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.002400" assertions="6"/> | ||
<testcase name="testSingleWarningMessage" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.001816" assertions="5"/> | ||
<testcase name="testMultipleWarningMessages" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.001602" assertions="6"/> | ||
<testcase name="testSingleMixedMessages" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.001809" assertions="9"/> | ||
<testcase name="testMultipleMixedMessages" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.002266" assertions="14"/> | ||
<testcase name="testFlashIntegrity" class="tests\unit\widgets\AlertTest" file="/var/www/new_yyi2/basic/tests/unit/widgets/AlertTest.php" time="0.001833" assertions="2"/> | ||
</testsuite> | ||
</testsuites> |
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