Example #1
0
 /**
  * @dataProvider getValuesForGetAndSetMethods
  */
 public function testGetMethod($key, $expectedValue)
 {
     $app = new Application();
     $app[$key] = $expectedValue;
     $this->assertEquals($expectedValue, $app->get($key));
 }