PHP Classes

File: tests/Container/FalseObjectContainerTest.php

Recommend this page to a friend!
  Classes of WsdlToPhp   PHP SOAP Package Generator   tests/Container/FalseObjectContainerTest.php   Download  
File: tests/Container/FalseObjectContainerTest.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: 400 bytes
 

Contents

Class file image Download
<?php

namespace WsdlToPhp\PackageGenerator\Tests\Container;

use
WsdlToPhp\PackageGenerator\Container\AbstractObjectContainer;

class
FalseObjectContainerTest extends AbstractObjectContainer
{
    protected function
objectProperty()
    {
        return
'foo';
    }
    protected function
objectClass()
    {
        return
'WsdlToPhp\\PackageGenerator\\Tests\\Container\\FalseObjectTest';
    }
}