をインスタンス仕様-INGのクラスのは、私は時々 class LoggedMessage
{
private $date;
private $message;
public function __construct(Message $message)
{
$this->date = new \DateTime();
$this-
私はTagModelを返す単一のメソッドで単純なファクトリクラスをテストしています。 class TagFactory
{
public function buildFromArray(array $tagData)
{
return new TagModel(
$tagData['t_id'],
$tagData['t_promotio
私はこの明白なテストをパスすることはできません。 FooはコンストラクタでBarを取得し、Foo :: m()を呼び出すと、Bar :: bar()が呼び出されます。 use PHPUnit\Framework\TestCase;
class Bar {
public function bar() {
echo "BAR";
}
}
class Foo {
に比較し、期待を皮肉っ: <?php
namespace AppBundle\Test\Service\Message;
use AppBundle\Service\Message\RabbitMqMessageProducerProvider;
use OldSound\RabbitMqBundle\RabbitMq\ProducerInterface;
use PHPUnit_F