summaryrefslogtreecommitdiffstats
path: root/3rdparty/simpletest/test/interfaces_test_php5_1.php
diff options
context:
space:
mode:
Diffstat (limited to '3rdparty/simpletest/test/interfaces_test_php5_1.php')
-rw-r--r--3rdparty/simpletest/test/interfaces_test_php5_1.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/3rdparty/simpletest/test/interfaces_test_php5_1.php b/3rdparty/simpletest/test/interfaces_test_php5_1.php
deleted file mode 100644
index 3d154f99539..00000000000
--- a/3rdparty/simpletest/test/interfaces_test_php5_1.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<?php
-
-interface SampleInterfaceWithHintInSignature {
- function method(array $hinted);
-}
-
-class TestOfInterfaceMocksWithHintInSignature extends UnitTestCase {
- function testBasicConstructOfAnInterfaceWithHintInSignature() {
- Mock::generate('SampleInterfaceWithHintInSignature');
- $mock = new MockSampleInterfaceWithHintInSignature();
- $this->assertIsA($mock, 'SampleInterfaceWithHintInSignature');
- }
-}
-