Improve stuffs about assertion call and assertions
Created by: peter279k
Changed log
- Using the
assertNullto assert expected isnull. - PHPUnit has two ways to make assertion call. One is
$thisand another one isself::. It seems that usingself::times is greater than using$this. To be consistency, using theselfto make assertion call on this repository. - Using the
assertSameto replaceassertEqualsand it can let all assertions make equals checking strictly.