当前位置: 首页>>代码示例>>PHP>>正文


PHP Store::getId方法代码示例

本文整理汇总了PHP中Store::getId方法的典型用法代码示例。如果您正苦于以下问题:PHP Store::getId方法的具体用法?PHP Store::getId怎么用?PHP Store::getId使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Store的用法示例。


在下文中一共展示了Store::getId方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: testFind

 function testFind()
 {
     $name = "Clides";
     $test_store = new Store($name);
     $test_store->save();
     $name2 = "Marthas";
     $test_store2 = new Store($name2);
     $test_store2->save();
     $result = Store::find($test_store2->getId());
     $this->assertEquals($test_store2, $result);
 }
开发者ID:alexMcosta,项目名称:Shoes_Brands,代码行数:11,代码来源:StoreTest.php

示例2: Store

 function test_find()
 {
     //Arrange
     $store_name = "Flying Shoes";
     $id = 1;
     $test_store = new Store($store_name, $id);
     $test_store->save();
     //Act
     $result = Store::find($test_store->getId());
     //Assert
     $this->assertEquals($test_store, $result);
 }
开发者ID:kevintokheim,项目名称:Shoe_Store,代码行数:12,代码来源:StoreTest.php

示例3: Brand

 function test_getCourses()
 {
     //Arrange
     $brand_name = "Nike";
     $id = null;
     $test_brand = new Brand($brand_name, $id);
     $test_brand->save();
     $store_name = "Nordstrom";
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $store_name2 = "Footlocker";
     $test_store2 = new Store($store_name2, $id);
     $test_store2->save();
     //Act
     $test_brand->addStore($test_store->getId());
     $test_brand->addStore($test_store2->getId());
     //Assert
     $this->assertEquals($test_brand->getStores(), [$test_store, $test_store2]);
 }
开发者ID:austinblanchard,项目名称:shoe_stores,代码行数:19,代码来源:BrandTest.php

示例4: testFindById

 function testFindById()
 {
     //Arrange
     $name = "Shoe Store 1";
     $id = 1;
     $test_store = new Store($name, $id);
     $test_store->save();
     $name2 = "Shoe Store 2";
     $id = 2;
     $test_store2 = new Store($name2, $id);
     $test_store2->save();
     //Act
     $search_id = $test_store->getId();
     $result = Store::find($search_id);
     //Assert
     $this->assertEquals($test_store, $result);
     var_dump($test_store);
     var_dump($result);
 }
开发者ID:anniehoogendoorn,项目名称:ShoeStores,代码行数:19,代码来源:StoreTest.php

示例5: testGetStores

 function testGetStores()
 {
     //Arrange
     $beer_name = "Your mom";
     $style = "IPA";
     $abv = 4;
     $ibu = 6;
     $container = "bottle";
     $brewery = "daddy";
     $id = 1;
     $image = "../img/test.jpg";
     $test_beer = new Beer($beer_name, $style, $abv, $ibu, $container, $brewery, $image, $id);
     $test_beer->save();
     $store_name = "M&M";
     $category = "Black Market";
     $region = "unknown";
     $address = "SW";
     $id2 = 2;
     $test_store = new Store($store_name, $category, $region, $address);
     $test_store->save();
     $store_name2 = "M&M2";
     $category2 = "Black Market2";
     $region2 = "unknown2";
     $address2 = "SW2";
     $id3 = 3;
     $test_store2 = new Store($store_name2, $category2, $region2, $address2);
     $test_store2->save();
     //Act
     $test_beer->addStore($test_store->getId());
     $test_beer->addStore($test_store2->getId());
     $result = $test_beer->getStores();
     //Assert
     $this->assertEquals([$test_store, $test_store2], $result);
 }
开发者ID:bborealis,项目名称:growler,代码行数:34,代码来源:BeerTest.php

示例6: testFind

 function testFind()
 {
     //Arrange
     $name = "shoe store";
     $location = "1234 nw 1st street";
     $id = 4;
     $test_store = new Store($name, $location, $id);
     $test_store->save();
     $name2 = "other store";
     $location2 = "5555 sw 2nd street";
     $id2 = 3;
     $test_store2 = new Store($name2, $location2, $id2);
     $test_store2->save();
     //Act
     $result = Store::find($test_store2->getId());
     //Assert
     $this->assertEquals($test_store2, $result);
 }
开发者ID:bencasalino,项目名称:cr4,代码行数:18,代码来源:StoreTest.php

示例7: Store

 function test_find()
 {
     //Arrange
     $name = "House of Shoes and Waffles";
     $address = "123 Street";
     $phone = "4-44";
     $test_store = new Store($name, $address, $phone);
     $test_store->save();
     $name2 = "Bob's Shoe Palace";
     $address2 = "456 Main Street";
     $phone2 = "1-800-NEW-SHOE";
     $test_store2 = new Store($name, $address, $phone);
     $test_store2->save();
     //Act
     $result = Store::find($test_store2->getId());
     //Assert
     $this->assertEquals($test_store2, $result);
 }
开发者ID:r-hills,项目名称:Shoes,代码行数:18,代码来源:StoreTest.php

示例8: Store

 function test_find()
 {
     //Arrange
     $store_name = "jerrys shoes ";
     $test_store = new Store($store_name);
     $test_store->save();
     $store_name2 = "newmans shoes ";
     $test_store2 = new Store($store_name2);
     $test_store2->save();
     //Act
     $result = Store::find($test_store->getId());
     //Assert
     $this->assertEquals($test_store, $result);
 }
开发者ID:bencasalino,项目名称:shoe-store,代码行数:14,代码来源:StoreTest.php

示例9: testFind

 function testFind()
 {
     // Arrange
     $name = "Get Your Kicks Co.";
     $test_Store = new Store($name);
     $test_Store->save();
     $name2 = "I Wanna Run Fast Co.";
     $test_Store2 = new Store($name2);
     $test_Store2->save();
     // Act
     $result = Store::find($test_Store2->getId());
     // Assert
     $this->assertEquals($test_Store2, $result);
 }
开发者ID:ben-pritchard,项目名称:Epicodus-Assessment---PHP-Many-to-Many-in-Silex,代码行数:14,代码来源:storeTest.php

示例10: Store

 function test_find()
 {
     //Arrange
     $name = "The Shoe Store";
     $location = "432 SW Tootsies Ave";
     $phone = "503-555-5555";
     $test_store = new Store($name, $location, $phone);
     $test_store->save();
     //Act
     $result = Store::find($test_store->getId());
     //Assert
     $this->assertEquals($test_store, $result);
 }
开发者ID:alexdbrown,项目名称:shoe_store,代码行数:13,代码来源:StoreTest.php

示例11: Store

 function test_find()
 {
     //Arrange
     $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();
     //Act
     $result = Store::find($test_store2->getId());
     //Assert
     $this->assertEquals($test_store2, $result);
 }
开发者ID:ashlinaronin,项目名称:shoes,代码行数:18,代码来源:StoreTest.php

示例12: testFind

 function testFind()
 {
     //Arrange
     $store_name = "Happy Lemon";
     $id = 1;
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $store_name2 = "Chatime";
     $id2 = 2;
     $test_store2 = new Store($store_name2, $id2);
     $test_store2->save();
     //Act
     $result = Store::find($test_store->getId());
     //Assert
     $this->assertEquals($test_store, $result);
 }
开发者ID:slmaturen,项目名称:shoe_store,代码行数:16,代码来源:StoreTest.php

示例13: testFind

 function testFind()
 {
     //Arrange
     $store_name = "Norstrom";
     $id = null;
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $another_store = "Madewell";
     $test_store2 = new Store($another_store, $id);
     $test_store2->save();
     //Act
     $result = Store::find($test_store->getId());
     //Assert
     $this->assertEquals($test_store, $result);
 }
开发者ID:kellimargaret,项目名称:Shoe_Stores,代码行数:15,代码来源:StoreTest.php

示例14: testFind

 function testFind()
 {
     //Arrange
     $store_name = "Shoes Galore";
     $test_store = new Store($store_name);
     $test_store->save();
     $store_name2 = "Save Our Soles";
     $test_store2 = new Store($store_name);
     $test_store2->save();
     //Act
     $id = $test_store->getId();
     $result = Store::find($id);
     //Assert
     $this->assertEquals($test_store, $result);
 }
开发者ID:kylepratuch,项目名称:Shoe_Store,代码行数:15,代码来源:StoreTest.php

示例15: testFind

 function testFind()
 {
     $store_name = "Beacons Closet";
     $new_store = new Store($store_name);
     $new_store->save();
     $store_name2 = "Buffalo Exchange";
     $new_store2 = new Store($store_name);
     $new_store2->save();
     $result = Store::find($new_store->getId());
     $this->assertEquals($new_store, $result);
 }
开发者ID:jschold,项目名称:shoe_stores,代码行数:11,代码来源:StoreTest.php


注:本文中的Store::getId方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。