Ejemplo n.º 1
0
 function testOrangePlatform()
 {
     SodaImpSingleton::setTheSodaImp(new OrangeSodaImp());
     $mediumSoda = new MediumSoda();
     $this->assertEquals($mediumSoda->pourSoda(), 'Yummy Orange Soda! Yummy Orange Soda!', 'Testing medium orange');
     $superSizeSoda = new SuperSizeSoda();
     $this->assertEquals($superSizeSoda->pourSoda(), 'Yummy Orange Soda! Yummy Orange Soda! Yummy Orange Soda! Yummy Orange Soda! Yummy Orange Soda!', 'Testing supersize orange');
 }
Ejemplo n.º 2
0
 function setSodaImp()
 {
     $this->sodaImp = SodaImpSingleton::getTheSodaImp();
 }
Ejemplo n.º 3
0
 function setTheSodaImp($si)
 {
     self::$sodaImp = $si;
 }