for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/*
* This file is part of the MilioooMessageBundle package.
*
* (c) Michiel boeckaert <[email protected]>
* This source file is subject to the MIT license that is bundled
* with this source code in the file LICENSE.
*/
namespace Miliooo\Messaging\Tests\TestHelpers\Model;
use Miliooo\Messaging\TestHelpers\Model\MessageMeta;
/**
* The Test file for Miliooo\Messaging\TestHelpers\Model\MessageMeta.
* @author Michiel Boeckaert <[email protected]>
class MessageMetaTest extends \PHPUnit_Framework_TestCase
{
public function testClassInstanceOfModelClass()
$class = new MessageMeta;
$this->assertInstanceOf('Miliooo\Messaging\Model\MessageMeta', $class);
}