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
This assertion can be used to easily assert stuff like:
> Assert::implies($hasDog, $leashAttached);
Which will assert that $leashAttached is true, if $hasDog is true.
This is a shorthand for `Assert::true(!$hasDog || $leashAttached)`.
0 commit comments