@@ 66-72 (lines=7) @@ | ||
63 | $this->assertEquals($expectedResult, $actualResult); |
|
64 | } |
|
65 | ||
66 | public function dataProviderShouldAskInnerFactoryIfUnderstandsString() |
|
67 | { |
|
68 | return array( |
|
69 | [true, 'foo'], |
|
70 | [false, 'foo'], |
|
71 | ); |
|
72 | } |
|
73 | ||
74 | /** |
|
75 | * @test |
|
@@ 94-100 (lines=7) @@ | ||
91 | $this->assertEquals($expectedResult, $actualResult); |
|
92 | } |
|
93 | ||
94 | public function dataProviderShouldAskInnerFactoryIfUnderstandsArray() |
|
95 | { |
|
96 | return array( |
|
97 | [true, ['foo']], |
|
98 | [false, ['foo']], |
|
99 | ); |
|
100 | } |
|
101 | ||
102 | /** |
|
103 | * @test |