本文整理汇总了PHP中Store::addBrand方法的典型用法代码示例。如果您正苦于以下问题:PHP Store::addBrand方法的具体用法?PHP Store::addBrand怎么用?PHP Store::addBrand使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Store
的用法示例。
在下文中一共展示了Store::addBrand方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: testAddBrand
function testAddBrand()
{
$store_name = "Beacons Closet";
$new_store = new Store($store_name);
$new_store->save();
$brand_name = "dr.martens";
$new_brand = new Brand($brand_name);
$new_brand->save();
$new_store->addBrand($new_brand);
$result = $new_store->getBrands();
$this->assertEquals($new_brand, $result[0]);
}
示例2: testDelete
function testDelete()
{
$name = "Zelds";
$test_store = new Store($name);
$test_store->save();
$name = "Granite";
$test_brand = new Brand($name);
$test_brand->save();
$test_store->addBrand($test_brand);
$test_store->delete();
$this->assertEquals([], $test_store->getBrands());
}
示例3: Brand
function test_getBrands()
{
//Arrange
$brand_name = "nike";
$test_brand = new Brand($brand_name);
$test_brand->save();
$store_name = "joes sandal store ";
$test_store = new Store($store_name);
$test_store->save();
//Act
$test_store->addBrand($test_brand);
$result = $test_store->getBrands();
//Assert
$this->assertEquals([$test_brand], $result);
}
示例4: Store
function test_delete()
{
//Arrange
$store_name = "The Awesome Shoe Store";
$test_store = new Store($store_name);
$test_store->save();
$brand_name = "Nike";
$test_brand = new Brand($brand_name);
$test_brand->save();
//Act
$test_store->addBrand($test_brand);
$test_store->delete();
//Assert
$this->assertEquals([], $test_brand->getStores());
}
示例5: Store
function test_store_getBrands()
{
//Arrange
$store_name = "Goody New Shoes";
$id = 1;
$test_store = new Store($store_name, $id);
$test_store->save();
$brand_name = "Nike";
$id1 = 1;
$test_brand = new Brand($brand_name, $id1);
$test_brand->save();
$test_store->addBrand($test_brand);
$brand_name2 = "Converse";
$id2 = 2;
$test_brand2 = new Brand($brand_name2, $id2);
$test_brand2->save();
$test_store->addBrand($test_brand2);
//Act
$result = $test_store->getBrands();
//Assert
$this->assertEquals([$test_brand2, $test_brand], $result);
}
示例6: Store
function test_addBrand()
{
$test_name = "Nordstrom";
$test_id = 1;
$test_store = new Store($test_name, $test_id);
$test_store->save();
$brand_name = "Y-3";
$test_brand = new Brand($brand_name);
$test_brand->save();
$test_store->addBrand($test_brand);
$result = $test_store->getBrands();
$this->assertEquals([$test_brand], $result);
}
示例7: Store
function test_getBrands()
{
//Arrange
$retailer = "Nordstrom";
$address = "1234 SW Main Street";
$phone = "123-456-7890";
$id = null;
$test_store = new Store($retailer, $address, $phone, $id);
$test_store->save();
$name = "Nike";
$stock = 5;
$test_brand = new Brand($name, $stock, $id);
$test_brand->save();
$name2 = "Adidas";
$stock2 = 8;
$test_brand2 = new Brand($name2, $stock2, $id);
$test_brand2->save();
//Act
$test_store->addBrand($test_brand);
$test_store->addBrand($test_brand2);
$result = $test_store->getBrands();
//Assert
$this->assertEquals([$test_brand, $test_brand2], $result);
}
示例8: testgetBrands
function testgetBrands()
{
//Arrange
$name1 = "shoe store";
$location = "123 n fake dr";
$id1 = 4;
$test_store = new Store($name1, $location, $id1);
$test_store->save();
$name = "nike";
$id = 1;
$test_brand = new Brand($name, $id);
$test_brand->save();
$name2 = "addidas";
$id2 = 2;
$test_brand2 = new Brand($name2, $id2);
$test_brand2->save();
//Act
$test_store->addBrand($test_brand);
$test_store->addBrand($test_brand2);
$result = $test_store->getBrands();
//Assert
$this->assertEquals([$test_brand, $test_brand2], $result);
}
示例9: testgetBrands
function testgetBrands()
{
//Arrange
$store_name = "Shoes Galore";
$test_store = new Store($store_name);
$test_store->save();
$brand_name = "Super Kicks";
$test_brand = new Brand($brand_name);
$test_brand->save();
$brand_name2 = "Cool Shoes";
$test_brand2 = new Brand($brand_name2);
$test_brand2->save();
//Act
$test_store->addBrand($test_brand);
$test_store->addBrand($test_brand2);
$result = $test_store->getBrands();
//Assert
$this->assertEquals([$test_brand, $test_brand2], $result);
}
示例10: Store
function test_getBrands()
{
//Arrange
$name = "The Shoe Store";
$location = "432 SW Tootsies Ave";
$phone = "503-555-5555";
$test_store = new Store($name, $location, $phone);
$test_store->save();
$name = "Crocs";
$test_brand = new Brand($name);
$test_brand->save();
$name2 = "Doc Martins";
$test_brand2 = new Brand($name);
$test_brand2->save();
//Act
$test_store->addBrand($test_brand);
$test_store->addBrand($test_brand2);
//Assert
$result = $test_store->getBrands();
$this->assertEquals([$test_brand, $test_brand2], $result);
}
示例11: testGetBrands
function testGetBrands()
{
// Arrange
$brand_name = "Babbling Brooks";
$test_Brand = new Brand($brand_name);
$test_Brand->save();
$brand_name2 = "Old Balance";
$test_Brand2 = new Brand($brand_name2);
$test_Brand2->save();
$store_name = "I Wanna Run Fast Co.";
$test_Store = new Store($store_name);
$test_Store->save();
// Act
$test_Store->addBrand($test_Brand);
$test_Store->addBrand($test_Brand2);
$result = $test_Store->getBrands();
// Assert
$this->assertEquals([$test_Brand, $test_Brand2], $result);
}
示例12: Store
function test_hasBrand()
{
//Arrange
// Make two test Stores
$name = "Burchs";
$location = "Oakway Center";
$phone = "5415131122";
$test_store = new Store($name, $location, $phone);
$test_store->save();
$name2 = "Payless ShoeSource";
$location2 = "Valley River Center";
$phone2 = "5415130809";
$test_store2 = new Store($name2, $location2, $phone2);
$test_store2->save();
// Make two test Brands
$name = "Nike";
$website = "http://www.nike.com";
$test_brand = new Brand($name, $website);
$test_brand->save();
$name2 = "Adidas";
$website2 = "http://www.adidas.com";
$test_brand2 = new Brand($name2, $website2);
$test_brand2->save();
// Add both brands to second store
$test_store2->addBrand($test_brand);
$test_store2->addBrand($test_brand2);
//Act
$true_result = $test_store2->hasBrand($test_brand2->getId());
$false_result = $test_store->hasBrand($test_brand2->getId());
//Assert
$this->assertEquals(true, $true_result);
$this->assertEquals(false, $false_result);
}
示例13: testGetBrands
function testGetBrands()
{
$name = "ShoeStore";
$id = 1;
$test_store = new Store($name, $id);
$test_store->save();
$name = "Asics";
$id3 = 3;
$test_brand = new Brand($name, $id3);
$test_brand->save();
$name2 = "Nike";
$id2 = 2;
$test_brand2 = new Brand($name2, $id2);
$test_brand2->save();
//Act
$test_store->addBrand($test_brand);
$test_store->addBrand($test_brand2);
//Assert
$this->assertEquals($test_store->getBrands(), [$test_brand, $test_brand2]);
}
示例14: Store
function test_deleteAllbrands()
{
$name = "Foot Locker";
$test_store = new Store($name, $id);
$test_store->save();
$name = "Nike";
$test_brand = new Brand($name, $id);
$test_brand->save();
$name2 = "Adidas";
$test_brand2 = new Brand($name2, $id);
$test_brand2->save();
$test_store->addBrand($test_brand->getId());
$test_store->addBrand($test_brand2->getId());
$test_store->deleteAllBrands();
$result = $test_store->getBrands();
$this->assertEquals([], $result);
}
示例15: Store
function test_getBrands()
{
//Arrange
$name = "House of Shoes and Waffles";
$address = "123 Street";
$phone = "4-44";
$test_store = new Store($name, $address, $phone);
$test_store->save();
$test_brand = new Brand("Nike");
$test_brand->save();
$test_brand2 = new Brand("Adidas");
$test_brand2->save();
//Act
$test_store->addBrand($test_brand);
$test_store->addBrand($test_brand2);
//Assert
$result = $test_store->getBrands();
$this->assertEquals([$test_brand, $test_brand2], $result);
}