53 lines
1.5 KiB
JavaScript
53 lines
1.5 KiB
JavaScript
![]() |
/*
|
||
|
*
|
||
|
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
|
||
|
*
|
||
|
* OpenAPI spec version:
|
||
|
*
|
||
|
* NOTE: This class is auto generated by the swagger code generator program.
|
||
|
* https://github.com/swagger-api/swagger-codegen.git
|
||
|
*
|
||
|
* Swagger Codegen version: 2.4.18
|
||
|
*
|
||
|
* Do not edit the class manually.
|
||
|
*
|
||
|
*/
|
||
|
|
||
|
(function(root, factory) {
|
||
|
if (typeof define === 'function' && define.amd) {
|
||
|
// AMD.
|
||
|
define(['expect.js', '../../src/index'], factory);
|
||
|
} else if (typeof module === 'object' && module.exports) {
|
||
|
// CommonJS-like environments that support module.exports, like Node.
|
||
|
factory(require('expect.js'), require('../../src/index'));
|
||
|
} else {
|
||
|
// Browser globals (root is window)
|
||
|
factory(root.expect, root.SwaggerJsClient);
|
||
|
}
|
||
|
}(this, function(expect, SwaggerJsClient) {
|
||
|
'use strict';
|
||
|
|
||
|
var instance;
|
||
|
|
||
|
describe('(package)', function() {
|
||
|
describe('UserInfoReq', function() {
|
||
|
beforeEach(function() {
|
||
|
instance = new SwaggerJsClient.UserInfoReq();
|
||
|
});
|
||
|
|
||
|
it('should create an instance of UserInfoReq', function() {
|
||
|
// TODO: update the code to test UserInfoReq
|
||
|
expect(instance).to.be.a(SwaggerJsClient.UserInfoReq);
|
||
|
});
|
||
|
|
||
|
it('should have the property id (base name: "id")', function() {
|
||
|
// TODO: update the code to test the property id
|
||
|
expect(instance).to.have.property('id');
|
||
|
// expect(instance.id).to.be(expectedValueLiteral);
|
||
|
});
|
||
|
|
||
|
});
|
||
|
});
|
||
|
|
||
|
}));
|