assertTrue(true); } public function testShouldConstruct() { $factory = new ServerRequestFactory; $this->assertInstanceOf(ServerRequestFactory::class, $factory); } public function testShouldSetServerParams() { $request = (new ServerRequestFactory)->createServerRequest( "GET", "/", ["foo" => "bar"] ); $this->assertEquals(["foo" => "bar"], $request->getServerParams()); } }