Skip to content

Commit 1a63f0d

Browse files
Improve test names
1 parent de56766 commit 1a63f0d

7 files changed

+7
-7
lines changed

tests/end-to-end/event/assertion-failure-in-postcondition-method.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
The right events are emitted in the right order for a test that fails because of an assertion failure in a postcondition method
2+
The right events are emitted in the right order for a test that fails because of an assertion failure in a "post condition" method
33
--FILE--
44
<?php declare(strict_types=1);
55
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/event/assertion-failure-in-precondition-method.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
The right events are emitted in the right order for a test that fails because of an assertion failure in a precondition method
2+
The right events are emitted in the right order for a test that fails because of an assertion failure in a "pre condition" method
33
--FILE--
44
<?php declare(strict_types=1);
55
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/event/data-provider-duplicate-key.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
The right events are emitted in the right order for a test that uses a data provider that provides duplicate keys
2+
The right events are emitted in the right order for a test that uses a data provider that provides data with duplicate keys
33
--FILE--
44
<?php declare(strict_types=1);
55
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/event/data-provider-empty.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
The right events are emitted in the right order for a test that uses a data provider that returns an empty array
2+
The right events are emitted in the right order for a test that uses a data provider that provides no data
33
--FILE--
44
<?php declare(strict_types=1);
55
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/event/data-provider-expects-argument.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
The right events are emitted in the right order for a test that uses a data provider that is not public
2+
The right events are emitted in the right order for a test that uses a data provider that expects an argument
33
--FILE--
44
<?php declare(strict_types=1);
55
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/event/data-provider-external.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
The right events are emitted in the right order for a successful test that uses an external data provider
2+
The right events are emitted in the right order for a successful test that uses a data provider method in a different class
33
--FILE--
44
<?php declare(strict_types=1);
55
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

tests/end-to-end/event/data-provider-invalid-argument-name.phpt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
--TEST--
2-
The right events are emitted in the right order for a test that uses a data provider that is not static
2+
The right events are emitted in the right order for a test that uses a data provider that provides data with invalid argument names
33
--FILE--
44
<?php declare(strict_types=1);
55
$traceFile = tempnam(sys_get_temp_dir(), __FILE__);

0 commit comments

Comments
 (0)