summaryrefslogtreecommitdiff
path: root/tests/UnitTests/simpletest/test/options_test.php
diff options
context:
space:
mode:
authorwei <>2006-04-14 06:22:09 +0000
committerwei <>2006-04-14 06:22:09 +0000
commit3d3f8d3832921f99daf8ce1953304763c2e76c62 (patch)
treee1b0a9bc3a13fccd253770fb452ac96cc6315121 /tests/UnitTests/simpletest/test/options_test.php
parent373d8acc503b94ea09823f49e2ab5e395eccc584 (diff)
Importing SQLMap + sample + docs.
Diffstat (limited to 'tests/UnitTests/simpletest/test/options_test.php')
-rw-r--r--tests/UnitTests/simpletest/test/options_test.php95
1 files changed, 0 insertions, 95 deletions
diff --git a/tests/UnitTests/simpletest/test/options_test.php b/tests/UnitTests/simpletest/test/options_test.php
deleted file mode 100644
index 8535f739..00000000
--- a/tests/UnitTests/simpletest/test/options_test.php
+++ /dev/null
@@ -1,95 +0,0 @@
-<?php
- // $Id: options_test.php,v 1.9 2005/01/13 01:31:57 lastcraft Exp $
-
- require_once(dirname(__FILE__) . '/../options.php');
-
- class TestOfOptions extends UnitTestCase {
-
- function testMockBase() {
- $old_class = SimpleTestOptions::getMockBaseClass();
- SimpleTestOptions::setMockBaseClass('Fred');
- $this->assertEqual(SimpleTestOptions::getMockBaseClass(), 'Fred');
- SimpleTestOptions::setMockBaseClass($old_class);
- }
-
- function testStubBase() {
- $old_class = SimpleTestOptions::getStubBaseClass();
- SimpleTestOptions::setStubBaseClass('Fred');
- $this->assertEqual(SimpleTestOptions::getStubBaseClass(), 'Fred');
- SimpleTestOptions::setStubBaseClass($old_class);
- }
-
- function testIgnoreList() {
- $this->assertFalse(SimpleTestOptions::isIgnored('ImaginaryTestCase'));
- SimpleTestOptions::ignore('ImaginaryTestCase');
- $this->assertTrue(SimpleTestOptions::isIgnored('ImaginaryTestCase'));
- }
- }
-
- class ComparisonClass {
- }
-
- class ComparisonSubclass extends ComparisonClass {
- }
-
- class TestOfCompatibility extends UnitTestCase {
-
- function testIsA() {
- $this->assertTrue(SimpleTestCompatibility::isA(
- new ComparisonClass(),
- 'ComparisonClass'));
- $this->assertFalse(SimpleTestCompatibility::isA(
- new ComparisonClass(),
- 'ComparisonSubclass'));
- $this->assertTrue(SimpleTestCompatibility::isA(
- new ComparisonSubclass(),
- 'ComparisonClass'));
- }
-
- function testIdentityOfObjects() {
- $object1 = new ComparisonClass();
- $object2 = new ComparisonClass();
- $this->assertIdentical($object1, $object2);
- }
-
- function testReferences () {
- $thing = "Hello";
- $thing_reference = &$thing;
- $thing_copy = $thing;
- $this->assertTrue(SimpleTestCompatibility::isReference(
- $thing,
- $thing));
- $this->assertTrue(SimpleTestCompatibility::isReference(
- $thing,
- $thing_reference));
- $this->assertFalse(SimpleTestCompatibility::isReference(
- $thing,
- $thing_copy));
- }
-
- function testObjectReferences () {
- $object = &new ComparisonClass();
- $object_reference = &$object;
- $object_copy = new ComparisonClass();
- $object_assignment = $object;
- $this->assertTrue(SimpleTestCompatibility::isReference(
- $object,
- $object));
- $this->assertTrue(SimpleTestCompatibility::isReference(
- $object,
- $object_reference));
- $this->assertFalse(SimpleTestCompatibility::isReference(
- $object,
- $object_copy));
- if (version_compare(phpversion(), '5', '>=')) {
- $this->assertTrue(SimpleTestCompatibility::isReference(
- $object,
- $object_assignment));
- } else {
- $this->assertFalse(SimpleTestCompatibility::isReference(
- $object,
- $object_assignment));
- }
- }
- }
-?> \ No newline at end of file