assertEquals([ 'type' => 'object', 'properties' => [ 'id' => ['type' => 'integer'], 'email' => ['type' => 'string'], 'roles' => [ 'type' => 'array', 'items' => ['type' => 'string'], ], 'friends' => [ 'type' => 'array', 'items' => [ '$ref' => '#/definitions/User', ], ], 'best_friend' => [ '$ref' => '#/definitions/User', ], ], ], $this->getModel('JMSUser')->toArray()); } protected static function createKernel(array $options = array()) { return new TestKernel(true); } }