summaryrefslogtreecommitdiff
path: root/tests/Framework/Html.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/Framework/Html.php')
-rw-r--r--tests/Framework/Html.php45
1 files changed, 0 insertions, 45 deletions
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 @@
-<?php
-
-/**
- * Test class to test rcube_html class
- *
- * @package Tests
- */
-class Framework_Html extends PHPUnit_Framework_TestCase
-{
-
- /**
- * Class constructor
- */
- function test_class()
- {
- $object = new html;
-
- $this->assertInstanceOf('html', $object, "Class constructor");
- }
-
- /**
- * Data for test_quote()
- */
- function data_quote()
- {
- return array(
- array('abc', 'abc'),
- array('?', '?'),
- array('"', '&quot;'),
- array('<', '&lt;'),
- array('>', '&gt;'),
- array('&', '&amp;'),
- array('&amp;', '&amp;amp;'),
- );
- }
-
- /**
- * Test for quote()
- * @dataProvider data_quote
- */
- function test_quote($str, $result)
- {
- $this->assertEquals(html::quote($str), $result);
- }
-}