Index: wp-testcase/test_includes_functions.php
===================================================================
--- wp-testcase/test_includes_functions.php	(revision 235)
+++ wp-testcase/test_includes_functions.php	(working copy)
@@ -108,7 +108,7 @@
 
 
 	function test_wp_unique_filename() {
-		$this->knownWPBug(6294);	
+		$this->knownWPBug(6294);
 		
 		/* this test requires:
 		   - that you have dir + file 'wp-testdata/images/test-image.png', 
@@ -238,6 +238,17 @@
 				unlink($testdir . $expected[$key]);
 		}
 	}
+	
+	function test_force_ssl_admin() {
+		force_ssl_admin( true );
+		$this->assertTrue( force_ssl_admin() );
+		force_ssl_admin( false );
+		$this->assertFalse( force_ssl_admin() );
+		force_ssl_admin( true );
+		$this->assertTrue( force_ssl_admin() );
+		force_ssl_admin( false );
+		$this->assertFalse( force_ssl_admin() );
+	}
 
 }
 
