Beispiel #1
0
 protected function setUp()
 {
     if (!$this->created) {
         if (BrandQuery::create()->count() === 0) {
             $brand = new Brand();
             $brand->getTranslation()->setTitle("Foo")->setChapo("Bar")->setDescription("Baz");
             $brand->getTranslation("fr_FR")->setTitle("orange")->setChapo("banana")->setDescription("apple");
             $brand->save();
         }
         $this->created = true;
     }
 }