Ouzo\Tools\Model\Template\GeneratorTest::shouldPrepareTemplateContents PHP Метод

shouldPrepareTemplateContents() публичный Метод

    public function shouldPrepareTemplateContents()
    {
        //given
        $generator = new Generator('products');
        //when
        $template = $generator->templateContents();
        //then
        $this->assertContains('class Product extends Model', $template);
        $this->assertContains('string description', $template);
    }