Example #1
0
 public function testRegistration()
 {
     $registry = new Registry();
     $registry->register($this->strategy_name, $this->strategy);
     $this->assertEquals([$this->strategy_name => $this->strategy], $registry->all());
     return $registry;
 }