Example #1
0
 public function testConfigListener()
 {
     $expected = TestObject::CONFIG_LISTENER;
     $value = $this->object->getConfigListener();
     $this->assertEquals($expected, $value);
     $expected = 'MyValue';
     $this->object->setConfigListener($expected);
     $value = $this->object->getConfigListener();
     $this->assertEquals($expected, $value);
 }