From 8c893b79d230cc844226bdf3b1de95cd5a99ecb2 Mon Sep 17 00:00:00 2001 From: Thomas Bruederli Date: Thu, 30 Jan 2014 09:12:57 +0100 Subject: Branching off for release 1.0 --- tests/Framework/Html.php | 45 --------------------------------------------- 1 file changed, 45 deletions(-) delete mode 100644 tests/Framework/Html.php (limited to 'tests/Framework/Html.php') diff --git a/tests/Framework/Html.php b/tests/Framework/Html.php deleted file mode 100644 index 60284deef..000000000 --- a/tests/Framework/Html.php +++ /dev/null @@ -1,45 +0,0 @@ -assertInstanceOf('html', $object, "Class constructor"); - } - - /** - * Data for test_quote() - */ - function data_quote() - { - return array( - array('abc', 'abc'), - array('?', '?'), - array('"', '"'), - array('<', '<'), - array('>', '>'), - array('&', '&'), - array('&', '&amp;'), - ); - } - - /** - * Test for quote() - * @dataProvider data_quote - */ - function test_quote($str, $result) - { - $this->assertEquals(html::quote($str), $result); - } -} -- cgit v1.2.3