public function testGet() { $locator = $this->getServiceLocator([ 'foo' => fn() => 'bar', 'bar' => fn() => 'baz', ]); $this->assertSame('bar', $locator->get('foo')); $this->assertSame('baz', $locator->get('bar')); }