initOutput(\rcmail_action::MODE_HTTP, 'settings', 'add-response'); $this->assertInstanceOf(\rcmail_action::class, $action); $this->assertTrue($action->checks()); $_GET = []; $this->runAndAssert($action, OutputHtmlMock::E_EXIT); $result = $output->getOutput(); $this->assertSame('responseedit', $output->template); $this->assertSame('Add response', $output->getProperty('pagetitle')); $this->assertFalse($output->get_env('readonly')); $this->assertTrue(stripos($result, '') === 0); $this->assertTrue(strpos($result, "rcmail.gui_object('editform', 'form')") !== false); } }