public function setUp()
 {
     parent::setUp();
     $this->object = $this->getMock($this->class_name(), array('plural_category'));
     $this->is_int = new \ReflectionMethod($this->object, 'is_int');
     $this->is_int->setAccessible(TRUE);
 }
 public function setUp()
 {
     parent::setUp();
     $classname = $this->class_name();
     $this->object = new $classname();
     $this->create_rules = new \ReflectionMethod($this->object, 'create_rules');
     $this->create_rules->setAccessible(TRUE);
 }
 public function setUp()
 {
     parent::setUp();
     $this->object = $this->getMock($this->class_name(), array('none'));
     $this->get_reader_cache()->setValue($this->object, $this->translations);
 }
Example #4
0
 public function setUp()
 {
     parent::setUp();
     $this->setup_object();
     $this->object->attach($this->_reader_test_factory());
 }
Example #5
0
 public function setUp()
 {
     parent::setUp();
     $this->setup_object();
 }