Lines Matching refs:result

55             ->when($result = new SUT('strtoupper'))
57 ->string($result('foo'))
59 ->string($result->getValidCallback())
61 ->string($result->getHash())
63 ->isEqualTo($result . '')
64 ->object($reflection = $result->getReflection())
73 ->when($result = new SUT(__CLASS__ . '::strtoupper'))
75 ->string($result('foo'))
77 ->array($result->getValidCallback())
79 ->string($result->getHash())
81 ->isEqualTo($result . '')
82 ->object($reflection = $result->getReflection())
91 ->when($result = new SUT(__CLASS__, 'strtoupper'))
93 ->string($result('foo'))
95 ->array($result->getValidCallback())
97 ->string($result->getHash())
99 ->isEqualTo($result . '')
100 ->object($reflection = $result->getReflection())
109 ->when($result = new SUT($this, 'strtolower'))
111 ->string($result('FOO'))
113 ->array($result->getValidCallback())
115 ->string($result->getHash())
121 ->isEqualTo($result . '')
122 ->object($reflection = $result->getReflection())
131 ->when($result = new SUT($this))
133 ->string($result('foo'))
135 ->array($result->getValidCallback())
137 ->string($result->getHash())
143 ->isEqualTo($result . '')
144 ->object($reflection = $result->getReflection())
158 ->when($result = new SUT($closure))
160 ->string($result('foo'))
162 ->object($result->getValidCallback())
164 ->string($result->getHash())
166 ->isEqualTo($result . '')
167 ->object($reflection = $result->getReflection())
176 ->when($result = new SUT([__CLASS__, 'strtoupper']))
178 ->string($result('foo'))
180 ->array($result->getValidCallback())
182 ->string($result->getHash())
184 ->isEqualTo($result . '')
185 ->object($reflection = $result->getReflection())
194 ->when($result = new SUT([$this, 'strtolower']))
196 ->string($result('FOO'))
198 ->array($result->getValidCallback())
200 ->string($result->getHash())
206 ->isEqualTo($result . '')
207 ->object($reflection = $result->getReflection())
251 ->when($result = $callable(7, [4.2], 'foo'))
253 ->array($result)
267 ->when($result = $callable->distributeArguments([7, [4.2], 'foo']))
269 ->array($result)
281 ->when($result = $xcallable->getValidCallback($arguments))
283 ->array($result)