Example #1
0
 public function testStrategy()
 {
     $strategy = new ConcreteStrategy();
     $context = new Context($strategy);
     $context->doAnything();
 }