You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
minor #9046 Use stricter syntax when testing (matt9mg)
This PR was submitted for the 4.0 branch but it was merged into the 2.7 branch instead (closes#9046).
Discussion
----------
Use stricter syntax when testing
e.g.
```php
$mailCollector->getMessageCount();
```
returns an int so its better to use
```php
$this->assertSame($expected, $actual);
````
will also meaning faster testing and better testing within the given example.
Commits
-------
3d8ee63 Use stricter syntax when testing
0 commit comments