public function testUpdateButton()
 {
     $this->testAddButton();
     $this->buttonMock->expects($this->once())->method('setData')->with('title', 'Updated Button')->willReturnSelf();
     $result = $this->template->updateButton('1', 'title', 'Updated Button');
     $this->assertSame($this->template, $result);
 }