コード例 #1
0
ファイル: StoreTest.php プロジェクト: alexMcosta/Shoes_Brands
 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);
 }
コード例 #2
0
ファイル: StoreTest.php プロジェクト: kevintokheim/Shoe_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);
 }
コード例 #3
0
 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]);
 }
コード例 #4
0
 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);
 }
コード例 #5
0
ファイル: BeerTest.php プロジェクト: bborealis/growler
 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);
 }
コード例 #6
0
ファイル: StoreTest.php プロジェクト: bencasalino/cr4
 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);
 }
コード例 #7
0
ファイル: StoreTest.php プロジェクト: r-hills/Shoes
 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);
 }
コード例 #8
0
ファイル: StoreTest.php プロジェクト: bencasalino/shoe-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);
 }
 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);
 }
コード例 #10
0
ファイル: StoreTest.php プロジェクト: alexdbrown/shoe_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);
 }
コード例 #11
0
ファイル: StoreTest.php プロジェクト: ashlinaronin/shoes
 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);
 }
コード例 #12
0
ファイル: StoreTest.php プロジェクト: jlbethel/Shoes
 function test_find()
 {
     //Arrange
     $store_name = "Shoe World";
     $test_store = new Store($store_name);
     $test_store->save();
     $store_name2 = "Shoe Deopt";
     $test_store2 = new Store($store_name2);
     $test_store2->save();
     //Act
     $result = Store::find($test_store->getId());
     //Assert
     $this->assertEquals($test_store, $result);
 }
コード例 #13
0
ファイル: StoreTest.php プロジェクト: slmaturen/shoe_store
 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);
 }
コード例 #14
0
 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);
 }
コード例 #15
0
ファイル: StoreTest.php プロジェクト: kylepratuch/Shoe_Store
 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);
 }
コード例 #16
0
ファイル: StoreTest.php プロジェクト: jschold/shoe_stores
 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);
 }
コード例 #17
0
ファイル: StoreTest.php プロジェクト: jeffaustin81/shoe_store
 function test_find()
 {
     $name = "Foot Locker";
     $test_store = new Store($name);
     $test_store->save();
     $name2 = "Foot Action";
     $test_store2 = new Store($name2);
     $test_store2->save();
     $result = Store::find($test_store->getId());
     $this->assertEquals($test_store, $result);
 }
コード例 #18
0
ファイル: StoreTest.php プロジェクト: bdspen/ShoeStore
 function test_find()
 {
     //arrange
     $name = "A Shoe Store";
     $id = 1;
     $test_store1 = new Store($name, $id);
     $test_store1->save();
     $name2 = "Down by the riverside";
     $id2 = 2;
     $test_store2 = new Store($name2, $id2);
     $test_store2->save();
     //act
     $result = Store::find($test_store2->getId());
     //assert
     $this->assertEquals($test_store2, $result);
 }
コード例 #19
0
 function test_find()
 {
     //Arrange
     $store_name = "HERE IS A BIG SHOE STORE";
     $id = 1;
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $store_name2 = "OVER THERE IS A BIG SHOE STORE";
     $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);
 }
コード例 #20
0
ファイル: StoreTest.php プロジェクト: kennygrage/dish
 function test_find()
 {
     //Arrange
     $store_name = "Portland Running Company";
     $id = null;
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $store_name2 = "New Balance";
     $test_store2 = new Store($store_name2, $id);
     $test_store2->save();
     //Act
     $id = $test_store->getId();
     $result = Store::find($id);
     //Assert
     $this->assertEquals($test_store, $result);
 }
コード例 #21
0
 function test_find()
 {
     //Arrange
     $store_name = "Zumies";
     $id = null;
     $test_store = new Store($store_name, $id);
     $test_store->save();
     $store_name2 = "Nordstrom";
     $test_store2 = new Store($store_name2, $id);
     $test_store2->save();
     //Act
     $result = Store::find($test_store->getId());
     //Assert
     $this->assertEquals($test_store, $result);
 }
コード例 #22
0
ファイル: StoreTest.php プロジェクト: sammartinez/shoes
 function test_find()
 {
     //Arrange
     $id = null;
     $store_name = "Fred Meyers";
     $test_store = new Store($id, $store_name);
     $test_store->save();
     $id2 = null;
     $store_name2 = "Walmart";
     $test_store2 = new Store($id2, $store_name2);
     $test_store2->save();
     //Act
     $result = Store::find($test_store->getId());
     //Assert
     $this->assertEquals($test_store, $result);
 }
コード例 #23
0
ファイル: StoreTest.php プロジェクト: bborealis/shoes
 function testFind()
 {
     //Arrange
     $name = "Clogs-N-More";
     $id = 1;
     $test_store = new Store($name, $id);
     $test_store->save();
     $name2 = "Shoe Depot";
     $id2 = 1;
     $test_store2 = new Store($name2, $id2);
     $test_store2->save();
     //Act
     $result = Store::find($test_store2->getId());
     //Assert
     $this->assertEquals($test_store2, $result);
 }
コード例 #24
0
ファイル: StoreTest.php プロジェクト: jcubed22/Shoes
 function test_find()
 {
     //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();
     $retailer2 = "Macys";
     $address2 = "400 SW 6th Avenue";
     $phone2 = "888-888-8888";
     $test_store2 = new Store($retailer2, $address2, $phone2, $id);
     $test_store2->save();
     //Act
     $result = Store::find($test_store2->getId());
     //Assert
     $this->assertEquals($test_store2, $result);
 }
コード例 #25
0
ファイル: StoreTest.php プロジェクト: bborealis/growler
 function testFind()
 {
     //Arrange
     $store_name = "Chill N Fill";
     $id = 1;
     $category = "bar";
     $region = "North Portland";
     $address = "5215 N Lombard Portland, OR 97203";
     $test_store = new Store($store_name, $category, $region, $address, $id);
     $test_store->save();
     $store_name2 = "Growler Guys";
     $id2 = 1;
     $category2 = "bottle shop";
     $region2 = "NE Portland";
     $address2 = "5553 N Lombard Portland, OR 97444";
     $test_store2 = new Store($store_name2, $category2, $region2, $address2, $id2);
     $test_store2->save();
     //Act
     $test_id = $test_store2->getId();
     $column_id = "id";
     $result = Store::find($column_id, $test_id);
     //Assert
     $this->assertEquals([$test_store2], $result);
 }
コード例 #26
0
ファイル: StoreTest.php プロジェクト: juliocesardiaz/Shoes
 function test_find()
 {
     $test_name = "Nordstrom";
     $test_id = 1;
     $test_store = new Store($test_name, $test_id);
     $test_store->save();
     $test_name2 = "Bloomingdales";
     $test_id2 = 2;
     $test_store2 = new Store($test_name2, $test_id2);
     $test_store2->save();
     $result = Store::find($test_store->getId());
     $this->assertEquals($test_store, $result);
 }
コード例 #27
0
ファイル: StoreTest.php プロジェクト: jtorrespdx/Shoe_stores
 function testFind()
 {
     //Arrange
     $store_location = "Lloyd Center";
     $test_store = new Store($store_location, $id);
     $test_store->save();
     $store_location2 = "Pioneer Place";
     $test_store2 = new Store($store_location2, $id2);
     $test_store2->save();
     //Act
     $result = Store::find($test_store2->getId());
     //assert
     $this->assertEquals($test_store2, $result);
 }