remove code directory
authorkrakjoe <joe.watkins@live.co.uk>
Thu, 5 Dec 2013 22:53:03 +0000 (22:53 +0000)
committerkrakjoe <joe.watkins@live.co.uk>
Thu, 5 Dec 2013 22:53:03 +0000 (22:53 +0000)
tests/code/class.php [deleted file]
tests/commands/0102_print.test

diff --git a/tests/code/class.php b/tests/code/class.php
deleted file mode 100644 (file)
index 84efca9..0000000
+++ /dev/null
@@ -1,8 +0,0 @@
-<?php
-class test {
-       
-       public function testMethod(){}
-       private function testPrivateMethod(){}
-       protected function testProtectedMethod(){}
-}
-?>
index be993de621d11a5a55cded1132b2adde54375344..de4acb7651b0c6ebe50b7aabb95db7a7829744da 100644 (file)
@@ -4,23 +4,25 @@
 # expect: TEST::FORMAT
 # options: -rr
 #################################################
-#[Set execution context: %s%eclass.php]
-#[Attempting compilation of %s%eclass.php]
-#[Success]
 #[User Class: test]
 #Methods (3):
-#L%d-%d test::testMethod() %s%eclass.php
+#L%d-%d test::testMethod() %s
 #              L%d     %s ZEND_RETURN                    C%d                   <unused>             <unused>            
-#      L%d-%d test::testPrivateMethod() %s%eclass.php
+#      L%d-%d test::testPrivateMethod() %s
 #              L%d     %s ZEND_RETURN                    C%d                   <unused>             <unused>            
-#      L%d-%d test::testProtectedMethod() %s%eclass.php
+#      L%d-%d test::testProtectedMethod() %s
 #              L%d     %s ZEND_RETURN                    C%d                   <unused>             <unused>            
 #[User Method testMethod]
-#      L%d-%d test::testMethod() %s%eclass.php
+#      L%d-%d test::testMethod() %s
 #              L%d     %s ZEND_RETURN                    C%d                   <unused>             <unused>   
 #################################################
-exec sapi/phpdbg/tests/code/class.php
-compile
+<:
+class test {
+        public function testMethod(){}
+        private function testPrivateMethod(){}
+        protected function testProtectedMethod(){}
+}
+:>
 print class test
 print method test::testMethod
 q