public function test_level()
 {
     /** === Test Data === */
     $LEVEL = 16;
     /** === Call and asserts  === */
     $this->obj->setLevel($LEVEL);
     $res = $this->obj->getLevel();
     $this->assertEquals($LEVEL, $res);
     $this->obj->levelIncrease();
     $res = $this->obj->getLevel();
     $this->assertEquals($LEVEL + 1, $res);
     $this->obj->levelDecrease();
     $res = $this->obj->getLevel();
     $this->assertEquals($LEVEL, $res);
 }