checkHostLayout(); } /** * @dataProvider getCreateData */ public function testFormHostFromConfiguration_Create($data) { $this->checkHostCreate($data); } /** * @dataProvider getValidationUpdateData */ public function testFormHostFromConfiguration_ValidationUpdate($data) { $this->checkHostUpdate($data); } /** * @backup hosts * * @dataProvider getUpdateData */ public function testFormHostFromConfiguration_Update($data) { $this->checkHostUpdate($data); } /** * Update the host without any changes and check host and interfaces hashes. */ public function testFormHostFromConfiguration_SimpleUpdate() { $this->checkHostSimpleUpdate(); } /** * @dataProvider getCloneData */ public function testFormHostFromConfiguration_Clone($data) { $this->cloneHost($data); // Check that items cloned from original host. $this->assertItemsDBCount($data['fields']['Host name'], $data['items']); } /** * @dataProvider getCancelData */ public function testFormHostFromConfiguration_Cancel($data) { $this->checkCancel($data); } /** * @dataProvider getDeleteData */ public function testFormHostFromConfiguration_Delete($data) { $this->checkDelete($data); } public function testFormHostFromConfiguration_DiscoveredHostLayout() { $this->checkDiscoveredHostLayout(); } }