Tagged 0.7.5
[scuttle] / includes / utf8 / tests / cases / utf8_strtolower.test.php
diff --git a/includes/utf8/tests/cases/utf8_strtolower.test.php b/includes/utf8/tests/cases/utf8_strtolower.test.php
new file mode 100644 (file)
index 0000000..8287b44
--- /dev/null
@@ -0,0 +1,50 @@
+<?php
+/**
+* @version $Id: utf8_strtolower.test.php,v 1.3 2006/02/24 23:33:10 harryf Exp $
+* @package utf8
+* @subpackage Tests
+*/
+
+//--------------------------------------------------------------------
+/**
+* Includes
+* @package utf8
+* @subpackage Tests
+*/
+require_once(dirname(__FILE__).'/../config.php');
+
+//--------------------------------------------------------------------
+/**
+* @package utf8
+* @subpackage Tests
+*/
+class test_utf8_strtolower extends UnitTestCase {
+
+    function test_utf8_strtolower() {
+        $this->UnitTestCase('utf8_strtolower()');
+    }
+    
+    function testLower() {
+        $str = 'IÑTËRNÂTIÔNÀLIZÆTIØN';
+        $lower = 'iñtërnâtiônàlizætiøn';
+        $this->assertEqual(utf8_strtolower($str),$lower);
+    }
+    
+    function testEmptyString() {
+        $str = '';
+        $lower = '';
+        $this->assertEqual(utf8_strtolower($str),$lower);
+    }
+}
+
+//--------------------------------------------------------------------
+/**
+* @package utf8
+* @subpackage Tests
+*/
+if (!defined('TEST_RUNNING')) {
+    define('TEST_RUNNING', true);
+    $test = &new test_utf8_strtolower();
+    $reporter = & getTestReporter();
+    $test->run($reporter);
+}

Benjamin Mako Hill || Want to submit a patch?