AstroFields/Core

View on GitHub
src/Test/Commands/CommandTest.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace WCM\AstroFields\Core\Test\Mediators;

class CommandInterfaceTest extends \PHPUnit_Framework_TestCase
{
    public function testCommandInterface()
    {
        $mock = $this->getMock( 'CommandInterface' );
        $this->assertInstanceOf( 'CommandInterface', $mock );
    }
}