1 | <?php |
||
11 | trait MatchesSnapshots |
||
12 | { |
||
13 | public function assertMatchesSnapshot($actual, Driver $driver = null) |
||
19 | |||
20 | public function assertMatchesXmlSnapshot($actual) |
||
24 | |||
25 | public function assertMatchesJsonSnapshot($actual) |
||
29 | |||
30 | /** |
||
31 | * Determines the snapshot's test, which is the first part of the ID. |
||
32 | * By default, the test class' name is used. |
||
33 | * |
||
34 | * @return string |
||
35 | */ |
||
36 | protected function getSnapshotTestName(): string |
||
40 | |||
41 | /** |
||
42 | * Determines the snapshot's test case, which is the second part of the ID. |
||
43 | * By default, the test case's method name is used. |
||
44 | * |
||
45 | * @return string |
||
46 | */ |
||
47 | protected function getSnapshotTestCaseName(): string |
||
51 | |||
52 | /** |
||
53 | * Determines the directory where snapshots are stored. By default a |
||
54 | * `__snapshots__` directory is created at the same level as the test |
||
55 | * class. |
||
56 | * |
||
57 | * @return string |
||
58 | */ |
||
59 | protected function getSnapshotDirectory(): string |
||
65 | |||
66 | /** |
||
67 | * Determines whether or not the snapshot should be updated instead of |
||
68 | * matched. |
||
69 | * |
||
70 | * Override this method it you want to use a different flag or mechanism |
||
71 | * than `-d --update-snapshots`. |
||
72 | * |
||
73 | * @return bool |
||
74 | */ |
||
75 | protected function shouldUpdateSnapshot(): bool |
||
79 | |||
80 | protected function createSnapshotWithDriver(Driver $driver): Snapshot |
||
89 | |||
90 | protected function doSnapShotAssertion(Snapshot $snapshot, $actual) |
||
113 | } |
||
114 |
This check looks for methods that are used by a trait but not required by it.
To illustrate, let’s look at the following code example
The trait
Idable
provides a methodequalsId
that in turn relies on the methodgetId()
. If this method does not exist on a class mixing in this trait, the method will fail.Adding the
getId()
as an abstract method to the trait will make sure it is available.