@@ -73,15 +73,15 @@ |
||
73 | 73 | |
74 | 74 | public function happyPathDataProvider() { |
75 | 75 | return [ |
76 | - 'Noun' => ['Person', self::$alice, 'Alice is the most recent Person in the store'], |
|
77 | - 'Nth Noun' => ['1st Person', self::$bob, 'Bob is the 1st Person in the store'], |
|
78 | - 'Related Noun' => ["Person's car", self::$chevy, 'Alice is the most recent Person in the store, and her most recent car is the Chevrolet'], |
|
79 | - 'Related Nth Noun' => ["Person's 1st car", self::$ford, 'Alice is the most recent Person in the store, and her 1st car is the Ford'], |
|
80 | - 'Nth Nouns Related Noun' => ["1st Person's car", self::$toyota, 'Bob is the 1st Person in the store, and his most recent car is the Toyota'], |
|
81 | - 'Nth Nouns Related Nth Noun' => ["1st Person's 1st car", self::$kia, 'Bob is the 1st Person in the store, and his 1st car is the Kia'], |
|
82 | - 'Missing Noun' => ['Dog', null, 'Dog does not exist in the store'], |
|
83 | - 'Missing Nth Noun' => ['3rd Person', null, '3rd Person does not exist in the store'], |
|
84 | - 'Missing Related Noun' => ["Person's dog", null, 'Alice is the most recent Person in the store, but has no dog'], |
|
76 | + 'Noun' => ['Person', self::$alice, 'Alice is the most recent Person in the store'], |
|
77 | + 'Nth Noun' => ['1st Person', self::$bob, 'Bob is the 1st Person in the store'], |
|
78 | + 'Related Noun' => ["Person's car", self::$chevy, 'Alice is the most recent Person in the store, and her most recent car is the Chevrolet'], |
|
79 | + 'Related Nth Noun' => ["Person's 1st car", self::$ford, 'Alice is the most recent Person in the store, and her 1st car is the Ford'], |
|
80 | + 'Nth Nouns Related Noun' => ["1st Person's car", self::$toyota, 'Bob is the 1st Person in the store, and his most recent car is the Toyota'], |
|
81 | + 'Nth Nouns Related Nth Noun' => ["1st Person's 1st car", self::$kia, 'Bob is the 1st Person in the store, and his 1st car is the Kia'], |
|
82 | + 'Missing Noun' => ['Dog', null, 'Dog does not exist in the store'], |
|
83 | + 'Missing Nth Noun' => ['3rd Person', null, '3rd Person does not exist in the store'], |
|
84 | + 'Missing Related Noun' => ["Person's dog", null, 'Alice is the most recent Person in the store, but has no dog'], |
|
85 | 85 | ]; |
86 | 86 | } |
87 | 87 |