diff options
Diffstat (limited to 'ext/xml/tests')
6 files changed, 0 insertions, 36 deletions
diff --git a/ext/xml/tests/xml_parse_into_struct_variation.phpt b/ext/xml/tests/xml_parse_into_struct_variation.phpt index 28c7acf9c3..3f98049567 100644 --- a/ext/xml/tests/xml_parse_into_struct_variation.phpt +++ b/ext/xml/tests/xml_parse_into_struct_variation.phpt @@ -8,12 +8,6 @@ if (!extension_loaded("xml")) { ?> --FILE-- <?php -/* Prototype : proto int xml_parse_into_struct(resource parser, string data, array &struct, array &index) - * Description: Parsing a XML document - * Source code: ext/xml/xml.c - * Alias to functions: - */ - echo "*** Testing xml_parse_into_struct() : variation ***\n"; $simple = "<main><para><note>simple note</note></para><para><note>simple note</note></para></main>"; diff --git a/ext/xml/tests/xml_parser_set_option_basic.phpt b/ext/xml/tests/xml_parser_set_option_basic.phpt index 48d91eafb6..7d398dfd70 100644 --- a/ext/xml/tests/xml_parser_set_option_basic.phpt +++ b/ext/xml/tests/xml_parser_set_option_basic.phpt @@ -8,12 +8,6 @@ if (!extension_loaded("xml")) { ?> --FILE-- <?php -/* Prototype : proto bool xml_set_notation_decl_handler ( resource $parser , callback $handler ) - * Description: Sets the notation declaration handler function for the XML parser. - * Source code: ext/xml/xml.c - * Alias to functions: - */ - echo "Simple testcase for xml_parser_get_option() function\n"; $parser = xml_parser_create_ns(); diff --git a/ext/xml/tests/xml_parser_set_option_variation3.phpt b/ext/xml/tests/xml_parser_set_option_variation3.phpt index 4187ddf068..b9d4b945e7 100644 --- a/ext/xml/tests/xml_parser_set_option_variation3.phpt +++ b/ext/xml/tests/xml_parser_set_option_variation3.phpt @@ -8,12 +8,6 @@ if (!extension_loaded("xml")) { ?> --FILE-- <?php -/* Prototype : proto int xml_parser_set_option(resource parser, int option, mixed value) - * Description: Set options in an XML parser - * Source code: ext/xml/xml.c - * Alias to functions: - */ - echo "*** Testing xml_parser_set_option() : usage variations ***\n"; class aClass { diff --git a/ext/xml/tests/xml_set_notation_decl_handler_basic.phpt b/ext/xml/tests/xml_set_notation_decl_handler_basic.phpt index c7b8b09049..6ceaea63d0 100644 --- a/ext/xml/tests/xml_set_notation_decl_handler_basic.phpt +++ b/ext/xml/tests/xml_set_notation_decl_handler_basic.phpt @@ -8,12 +8,6 @@ if (!extension_loaded("xml")) { ?> --FILE-- <?php -/* Prototype : proto bool xml_set_notation_decl_handler ( resource $parser , callback $handler ) - * Description: Sets the notation declaration handler function for the XML parser. - * Source code: ext/xml/xml.c - * Alias to functions: - */ - class XML_Parser { diff --git a/ext/xml/tests/xml_set_processing_instruction_handler_basic.phpt b/ext/xml/tests/xml_set_processing_instruction_handler_basic.phpt index f13c52517f..54a71fd48c 100644 --- a/ext/xml/tests/xml_set_processing_instruction_handler_basic.phpt +++ b/ext/xml/tests/xml_set_processing_instruction_handler_basic.phpt @@ -8,12 +8,6 @@ if (!extension_loaded("xml")) { ?> --FILE-- <?php -/* Prototype : proto bool xml_set_processing_instruction_handler ( resource $parser , callback $handler ) - * Description: Sets the processing instruction (PI) handler function for the XML parser. - * Source code: ext/xml/xml.c - * Alias to functions: - */ - class XML_Parser { diff --git a/ext/xml/tests/xml_set_start_namespace_decl_handler_basic.phpt b/ext/xml/tests/xml_set_start_namespace_decl_handler_basic.phpt index 8d75d2099c..6a783f6cfc 100644 --- a/ext/xml/tests/xml_set_start_namespace_decl_handler_basic.phpt +++ b/ext/xml/tests/xml_set_start_namespace_decl_handler_basic.phpt @@ -8,12 +8,6 @@ if (!extension_loaded("xml")) { ?> --FILE-- <?php -/* Prototype : bool xml_set_start_namespace_decl_handler ( resource $parser , callback $handler ) - * Description: Set up start namespace declaration handler. - * Source code: ext/xml/xml.c - * Alias to functions: - */ - $xml = <<<HERE <aw1:book xmlns:aw1="http://www.somewhere.com/namespace1" xmlns:aw2="file:/DTD/somewhere.dtd"> |