Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ae2f35a

Browse files
committed
Minor adjustments
1 parent f94ac66 commit ae2f35a

File tree

1 file changed

+4
-4
lines changed
  • guides/v2.1/test/integration/annotations

1 file changed

+4
-4
lines changed

guides/v2.1/test/integration/annotations/depends.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Please note that dependencies don't define the order in which the test methods a
1818

1919
### Example 1
2020

21-
Lets check the following basic example.
21+
Let's check the following basic example.
2222

2323
```php
2424
/**
@@ -46,7 +46,7 @@ public function testNumber($number)
4646
### Example 2
4747

4848
{:.bs-callout .bs-callout-info}
49-
Using more than one dependencies, arguments will be passed in the annotations' defined order.
49+
If using multiple dependencies, arguments are passed in the annotations' defined order.
5050

5151
```php
5252
/**
@@ -87,7 +87,7 @@ public function testNumber(int $one, int $two)
8787

8888
### Example 3
8989

90-
Let's check the following practical example, where we'll be checking the customer email by customer id.
90+
Let's check the following practical example, where we'll be checking the customer email by customer ID.
9191

9292
```php
9393
use Magento\Customer\Api\CustomerRepositoryInterface;
@@ -118,4 +118,4 @@ public function testEmail(CustomerInterface $customer)
118118
}
119119
```
120120

121-
You can read more about PHPUnit Depends annotation [here](https://phpunit.readthedocs.io/en/8.2/annotations.html#depends){:target="_blank"}.
121+
You can read more about PHPUnit dependency annotation [here](https://phpunit.readthedocs.io/en/8.2/annotations.html#depends){:target="_blank"}.

0 commit comments

Comments
 (0)