getMethod($name); $method->setAccessible(true); return $method; } public function setUp() { $this->_socket = new Socket(); } /* public function testWhatGoesInConstructComesOut() { $this->assertTrue(false); } */ public function testGetDefaultConfigForConstruct() { $ref_conf = static::getMethod('getConfig'); $config = $ref_conf->invokeArgs($this->_socket, Array()); $this->assertEquals(array_values(Socket::$_defaults), $config); } public function testInvalidConstructorArguments() { $this->setExpectedException('\\Ratchet\\Exception'); $socket = new RealSocket('invalid', 'param', 'derp'); } }