atoum / atoum-documentation

Documentation of atoum, a php unit test framework
http://docs.atoum.org
Other
10 stars 41 forks source link

New resource asserter #165

Closed jubianchi closed 7 years ago

jubianchi commented 8 years ago

See atoum/atoum#535

$this
    ->resource($variable)
        ->isOfType('stream')
        ->isStream()
        ->type
            ->isEqualTo('stream')
;

Both assertions are equivalent here. To sum-up:

Hywan commented 8 years ago

Yup, ->type fallbacks to the string asserters.

Grummfy commented 8 years ago

not sure to understand this. you speak about stream but it's resource, not stream...

ping @jubianchi & @Hywan