From a89631fd92e868ca25aaf753f78d73be76c5dda9 Mon Sep 17 00:00:00 2001 From: Eric Lippmann Date: Tue, 3 Sep 2013 13:28:53 +0200 Subject: [PATCH] Tests/Monitoring: Remove useless test ConfirmationFormTest refs #4586 --- .../forms/Command/ConfirmationFormTest.php | 33 ------------------- 1 file changed, 33 deletions(-) delete mode 100644 modules/monitoring/test/php/application/forms/Command/ConfirmationFormTest.php diff --git a/modules/monitoring/test/php/application/forms/Command/ConfirmationFormTest.php b/modules/monitoring/test/php/application/forms/Command/ConfirmationFormTest.php deleted file mode 100644 index 5a515308d..000000000 --- a/modules/monitoring/test/php/application/forms/Command/ConfirmationFormTest.php +++ /dev/null @@ -1,33 +0,0 @@ -setRequest($this->getRequest()); - - $form->addNote('444 NOTE 1'); - $form->addNote('555 NOTE 2'); - $form->buildForm(); - $content = $form->render($view); - - $this->assertContains('
', $content); - $this->assertContains('
', $content); - $this->assertContains('444 NOTE 1
', $content); - $this->assertContains('555 NOTE 2', $content); - } -}