assertEquals('Hello World', $service->get()); // now change the implementation and use the HtmlFormatter instead $service->setImplementation(new HtmlFormatter()); $this->assertEquals('

Hello World

', $service->get()); } }