Viewing file: MockConfigurationBuilderTest.php (1.06 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
namespace Mockery\Generator;
use Mockery as m; use Mockery\Generator\MockConfigurationBuilder;
class MockConfigurationBuilderTest extends \PHPUnit_Framework_TestCase { /** * @test */ public function reservedWordsAreBlackListedByDefault() { $builder = new MockConfigurationBuilder; $this->assertContains('abstract', $builder->getMockConfiguration()->getBlackListedMethods());
// need a builtin for this $this->markTestSkipped("Need a builtin class with a method that is a reserved word"); }
/** * @test */ public function magicMethodsAreBlackListedByDefault() { $builder = new MockConfigurationBuilder; $builder->addTarget("Mockery\Generator\ClassWithMagicCall"); $methods = $builder->getMockConfiguration()->getMethodsToMock(); $this->assertEquals(1, count($methods)); $this->assertEquals("foo", $methods[0]->getName()); } }
class ClassWithMagicCall { public function foo() { } public function __call($method, $args) { } }
|