Skip to content

Commit

Permalink
Improve test names
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastianbergmann committed Apr 13, 2024
1 parent de56766 commit 1a63f0d
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
The right events are emitted in the right order for a test that fails because of an assertion failure in a postcondition method
The right events are emitted in the right order for a test that fails because of an assertion failure in a "post condition" method
--FILE--
<?php declare(strict_types=1);
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
The right events are emitted in the right order for a test that fails because of an assertion failure in a precondition method
The right events are emitted in the right order for a test that fails because of an assertion failure in a "pre condition" method
--FILE--
<?php declare(strict_types=1);
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);
Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/event/data-provider-duplicate-key.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
The right events are emitted in the right order for a test that uses a data provider that provides duplicate keys
The right events are emitted in the right order for a test that uses a data provider that provides data with duplicate keys
--FILE--
<?php declare(strict_types=1);
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);
Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/event/data-provider-empty.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
The right events are emitted in the right order for a test that uses a data provider that returns an empty array
The right events are emitted in the right order for a test that uses a data provider that provides no data
--FILE--
<?php declare(strict_types=1);
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);
Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/event/data-provider-expects-argument.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
The right events are emitted in the right order for a test that uses a data provider that is not public
The right events are emitted in the right order for a test that uses a data provider that expects an argument
--FILE--
<?php declare(strict_types=1);
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);
Expand Down
2 changes: 1 addition & 1 deletion tests/end-to-end/event/data-provider-external.phpt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
The right events are emitted in the right order for a successful test that uses an external data provider
The right events are emitted in the right order for a successful test that uses a data provider method in a different class
--FILE--
<?php declare(strict_types=1);
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
--TEST--
The right events are emitted in the right order for a test that uses a data provider that is not static
The right events are emitted in the right order for a test that uses a data provider that provides data with invalid argument names
--FILE--
<?php declare(strict_types=1);
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);
Expand Down

0 comments on commit 1a63f0d

Please sign in to comment.