helly           Sat May 20 11:34:58 2006 UTC

  Added files:                 
    /php-src/tests/classes      abstract_by_interface_001.phpt 
                                abstract_by_interface_002.phpt 
  Log:
  - Add new tests
  

http://cvs.php.net/viewcvs.cgi/php-src/tests/classes/abstract_by_interface_001.phpt?view=markup&rev=1.1
Index: php-src/tests/classes/abstract_by_interface_001.phpt
+++ php-src/tests/classes/abstract_by_interface_001.phpt
--TEST--
ZE2 An abstract method may not be called
--FILE--
<?php

class Root {
}

interface MyInterface
{
        function MyInterfaceFunc();
}

abstract class Derived extends Root implements MyInterface {
}

class Leaf extends Derived
{
        function MyInterfaceFunc() {}   
}

var_dump(new Leaf);

class Fails extends Root implements MyInterface {
}

?>
===DONE===
--EXPECTF--
object(Leaf)#%d (0) {
}

Fatal error: Class Fails contains 1 abstract method and must therefore be 
declared abstract or implement the remaining methods 
(MyInterface::MyInterfaceFunc) in %sabstract_by_interface_001.php on line %d

http://cvs.php.net/viewcvs.cgi/php-src/tests/classes/abstract_by_interface_002.phpt?view=markup&rev=1.1
Index: php-src/tests/classes/abstract_by_interface_002.phpt
+++ php-src/tests/classes/abstract_by_interface_002.phpt
--TEST--
ZE2 An abstract method may not be called
--FILE--
<?php

class Root {
}

interface MyInterface
{
        static function MyInterfaceFunc();
}

abstract class Derived extends Root implements MyInterface {
}

class Leaf extends Derived
{
        static function MyInterfaceFunc() {}    
}

var_dump(new Leaf);

class Fails extends Root implements MyInterface {
}

?>
===DONE===
--EXPECTF--
object(Leaf)#%d (0) {
}

Fatal error: Class Fails contains 1 abstract method and must therefore be 
declared abstract or implement the remaining methods 
(MyInterface::MyInterfaceFunc) in %sabstract_by_interface_002.php on line %d

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to