hgsgtk / mpunit

Mini PHP xUnit Testing Framework

Home Page:https://speakerdeck.com/hgsgtk/self-made-xunit

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Create Test Fixture (setup / teardown)

hgsgtk opened this issue · comments

setupのhook

getHookMethods() にてフックするべきメソッドを取得する

array(4) {
  ["beforeClass"]=>
  array(1) {
    [0]=>
    string(16) "setUpBeforeClass"
  }
  ["before"]=>
  array(1) {
    [0]=>
    string(5) "setUp"
  }
  ["after"]=>
  array(1) {
    [0]=>
    string(8) "tearDown"
  }
  ["afterClass"]=>
  array(1) {
    [0]=>
    string(18) "tearDownAfterClass"
  }
}