PHP Classes

File: tests/Container/ParserTest.php

Recommend this page to a friend!
  Classes of WsdlToPhp   PHP SOAP Package Generator   tests/Container/ParserTest.php   Download  
File: tests/Container/ParserTest.php
Role: Unit test script
Content type: text/plain
Description: Unit test script
Class: PHP SOAP Package Generator
Generate package to call SOAP services using WSDL
Author: By
Last change:
Date: 8 years ago
Size: 424 bytes
 

Contents

Class file image Download
<?php

namespace WsdlToPhp\PackageGenerator\Tests\Container;

use
WsdlToPhp\PackageGenerator\Container\Parser;
use
WsdlToPhp\PackageGenerator\Tests\TestCase;

class
ParserTest extends TestCase
{
   
/**
     * @expectedException \InvalidArgumentException
     */
   
public function testAddWithException()
    {
       
$container = new Parser(self::getBingGeneratorInstance());
       
$container->add($container);
    }
}