public function testSetAttribute()
 {
     $this->assertEmpty($this->_block->getSomeValue());
     $this->_block->setAttribute('some_value', 'value');
     $this->assertEquals('value', $this->_block->getSomeValue());
 }