Add fixes for es6 generator (#180)

Various fixes for JS (ES6) generator
This commit is contained in:
delenius
2018-06-16 10:59:23 -07:00
committed by William Cheng
parent 53d9878cf2
commit c607ea8b31
194 changed files with 8532 additions and 5008 deletions

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.AdditionalPropertiesClass();
instance = new OpenApiPetstore.AdditionalPropertiesClass();
});
var getProperty = function(object, getter, property) {
@@ -50,19 +50,19 @@
describe('AdditionalPropertiesClass', function() {
it('should create an instance of AdditionalPropertiesClass', function() {
// uncomment below and update the code to test AdditionalPropertiesClass
//var instane = new SwaggerPetstore.AdditionalPropertiesClass();
//expect(instance).to.be.a(SwaggerPetstore.AdditionalPropertiesClass);
//var instane = new OpenApiPetstore.AdditionalPropertiesClass();
//expect(instance).to.be.a(OpenApiPetstore.AdditionalPropertiesClass);
});
it('should have the property mapProperty (base name: "map_property")', function() {
// uncomment below and update the code to test the property mapProperty
//var instane = new SwaggerPetstore.AdditionalPropertiesClass();
//var instane = new OpenApiPetstore.AdditionalPropertiesClass();
//expect(instance).to.be();
});
it('should have the property mapOfMapProperty (base name: "map_of_map_property")', function() {
// uncomment below and update the code to test the property mapOfMapProperty
//var instane = new SwaggerPetstore.AdditionalPropertiesClass();
//var instane = new OpenApiPetstore.AdditionalPropertiesClass();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Animal();
instance = new OpenApiPetstore.Animal();
});
var getProperty = function(object, getter, property) {
@@ -50,19 +50,19 @@
describe('Animal', function() {
it('should create an instance of Animal', function() {
// uncomment below and update the code to test Animal
//var instane = new SwaggerPetstore.Animal();
//expect(instance).to.be.a(SwaggerPetstore.Animal);
//var instane = new OpenApiPetstore.Animal();
//expect(instance).to.be.a(OpenApiPetstore.Animal);
});
it('should have the property className (base name: "className")', function() {
// uncomment below and update the code to test the property className
//var instane = new SwaggerPetstore.Animal();
//var instane = new OpenApiPetstore.Animal();
//expect(instance).to.be();
});
it('should have the property color (base name: "color")', function() {
// uncomment below and update the code to test the property color
//var instane = new SwaggerPetstore.Animal();
//var instane = new OpenApiPetstore.Animal();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.AnimalFarm();
instance = new OpenApiPetstore.AnimalFarm();
});
var getProperty = function(object, getter, property) {
@@ -50,8 +50,8 @@
describe('AnimalFarm', function() {
it('should create an instance of AnimalFarm', function() {
// uncomment below and update the code to test AnimalFarm
//var instane = new SwaggerPetstore.AnimalFarm();
//expect(instance).to.be.a(SwaggerPetstore.AnimalFarm);
//var instane = new OpenApiPetstore.AnimalFarm();
//expect(instance).to.be.a(OpenApiPetstore.AnimalFarm);
});
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.ApiResponse();
instance = new OpenApiPetstore.ApiResponse();
});
var getProperty = function(object, getter, property) {
@@ -50,25 +50,25 @@
describe('ApiResponse', function() {
it('should create an instance of ApiResponse', function() {
// uncomment below and update the code to test ApiResponse
//var instane = new SwaggerPetstore.ApiResponse();
//expect(instance).to.be.a(SwaggerPetstore.ApiResponse);
//var instane = new OpenApiPetstore.ApiResponse();
//expect(instance).to.be.a(OpenApiPetstore.ApiResponse);
});
it('should have the property code (base name: "code")', function() {
// uncomment below and update the code to test the property code
//var instane = new SwaggerPetstore.ApiResponse();
//var instane = new OpenApiPetstore.ApiResponse();
//expect(instance).to.be();
});
it('should have the property type (base name: "type")', function() {
// uncomment below and update the code to test the property type
//var instane = new SwaggerPetstore.ApiResponse();
//var instane = new OpenApiPetstore.ApiResponse();
//expect(instance).to.be();
});
it('should have the property message (base name: "message")', function() {
// uncomment below and update the code to test the property message
//var instane = new SwaggerPetstore.ApiResponse();
//var instane = new OpenApiPetstore.ApiResponse();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.ArrayOfArrayOfNumberOnly();
instance = new OpenApiPetstore.ArrayOfArrayOfNumberOnly();
});
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
describe('ArrayOfArrayOfNumberOnly', function() {
it('should create an instance of ArrayOfArrayOfNumberOnly', function() {
// uncomment below and update the code to test ArrayOfArrayOfNumberOnly
//var instane = new SwaggerPetstore.ArrayOfArrayOfNumberOnly();
//expect(instance).to.be.a(SwaggerPetstore.ArrayOfArrayOfNumberOnly);
//var instane = new OpenApiPetstore.ArrayOfArrayOfNumberOnly();
//expect(instance).to.be.a(OpenApiPetstore.ArrayOfArrayOfNumberOnly);
});
it('should have the property arrayArrayNumber (base name: "ArrayArrayNumber")', function() {
// uncomment below and update the code to test the property arrayArrayNumber
//var instane = new SwaggerPetstore.ArrayOfArrayOfNumberOnly();
//var instane = new OpenApiPetstore.ArrayOfArrayOfNumberOnly();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.ArrayOfNumberOnly();
instance = new OpenApiPetstore.ArrayOfNumberOnly();
});
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
describe('ArrayOfNumberOnly', function() {
it('should create an instance of ArrayOfNumberOnly', function() {
// uncomment below and update the code to test ArrayOfNumberOnly
//var instane = new SwaggerPetstore.ArrayOfNumberOnly();
//expect(instance).to.be.a(SwaggerPetstore.ArrayOfNumberOnly);
//var instane = new OpenApiPetstore.ArrayOfNumberOnly();
//expect(instance).to.be.a(OpenApiPetstore.ArrayOfNumberOnly);
});
it('should have the property arrayNumber (base name: "ArrayNumber")', function() {
// uncomment below and update the code to test the property arrayNumber
//var instane = new SwaggerPetstore.ArrayOfNumberOnly();
//var instane = new OpenApiPetstore.ArrayOfNumberOnly();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.ArrayTest();
instance = new OpenApiPetstore.ArrayTest();
});
var getProperty = function(object, getter, property) {
@@ -50,25 +50,25 @@
describe('ArrayTest', function() {
it('should create an instance of ArrayTest', function() {
// uncomment below and update the code to test ArrayTest
//var instane = new SwaggerPetstore.ArrayTest();
//expect(instance).to.be.a(SwaggerPetstore.ArrayTest);
//var instane = new OpenApiPetstore.ArrayTest();
//expect(instance).to.be.a(OpenApiPetstore.ArrayTest);
});
it('should have the property arrayOfString (base name: "array_of_string")', function() {
// uncomment below and update the code to test the property arrayOfString
//var instane = new SwaggerPetstore.ArrayTest();
//var instane = new OpenApiPetstore.ArrayTest();
//expect(instance).to.be();
});
it('should have the property arrayArrayOfInteger (base name: "array_array_of_integer")', function() {
// uncomment below and update the code to test the property arrayArrayOfInteger
//var instane = new SwaggerPetstore.ArrayTest();
//var instane = new OpenApiPetstore.ArrayTest();
//expect(instance).to.be();
});
it('should have the property arrayArrayOfModel (base name: "array_array_of_model")', function() {
// uncomment below and update the code to test the property arrayArrayOfModel
//var instane = new SwaggerPetstore.ArrayTest();
//var instane = new OpenApiPetstore.ArrayTest();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Capitalization();
instance = new OpenApiPetstore.Capitalization();
});
var getProperty = function(object, getter, property) {
@@ -50,43 +50,43 @@
describe('Capitalization', function() {
it('should create an instance of Capitalization', function() {
// uncomment below and update the code to test Capitalization
//var instane = new SwaggerPetstore.Capitalization();
//expect(instance).to.be.a(SwaggerPetstore.Capitalization);
//var instane = new OpenApiPetstore.Capitalization();
//expect(instance).to.be.a(OpenApiPetstore.Capitalization);
});
it('should have the property smallCamel (base name: "smallCamel")', function() {
// uncomment below and update the code to test the property smallCamel
//var instane = new SwaggerPetstore.Capitalization();
//var instane = new OpenApiPetstore.Capitalization();
//expect(instance).to.be();
});
it('should have the property capitalCamel (base name: "CapitalCamel")', function() {
// uncomment below and update the code to test the property capitalCamel
//var instane = new SwaggerPetstore.Capitalization();
//var instane = new OpenApiPetstore.Capitalization();
//expect(instance).to.be();
});
it('should have the property smallSnake (base name: "small_Snake")', function() {
// uncomment below and update the code to test the property smallSnake
//var instane = new SwaggerPetstore.Capitalization();
//var instane = new OpenApiPetstore.Capitalization();
//expect(instance).to.be();
});
it('should have the property capitalSnake (base name: "Capital_Snake")', function() {
// uncomment below and update the code to test the property capitalSnake
//var instane = new SwaggerPetstore.Capitalization();
//var instane = new OpenApiPetstore.Capitalization();
//expect(instance).to.be();
});
it('should have the property sCAETHFlowPoints (base name: "SCA_ETH_Flow_Points")', function() {
// uncomment below and update the code to test the property sCAETHFlowPoints
//var instane = new SwaggerPetstore.Capitalization();
//var instane = new OpenApiPetstore.Capitalization();
//expect(instance).to.be();
});
it('should have the property ATT_NAME (base name: "ATT_NAME")', function() {
// uncomment below and update the code to test the property ATT_NAME
//var instane = new SwaggerPetstore.Capitalization();
//var instane = new OpenApiPetstore.Capitalization();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Cat();
instance = new OpenApiPetstore.Cat();
});
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
describe('Cat', function() {
it('should create an instance of Cat', function() {
// uncomment below and update the code to test Cat
//var instane = new SwaggerPetstore.Cat();
//expect(instance).to.be.a(SwaggerPetstore.Cat);
//var instane = new OpenApiPetstore.Cat();
//expect(instance).to.be.a(OpenApiPetstore.Cat);
});
it('should have the property declawed (base name: "declawed")', function() {
// uncomment below and update the code to test the property declawed
//var instane = new SwaggerPetstore.Cat();
//var instane = new OpenApiPetstore.Cat();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Category();
instance = new OpenApiPetstore.Category();
});
var getProperty = function(object, getter, property) {
@@ -50,19 +50,19 @@
describe('Category', function() {
it('should create an instance of Category', function() {
// uncomment below and update the code to test Category
//var instane = new SwaggerPetstore.Category();
//expect(instance).to.be.a(SwaggerPetstore.Category);
//var instane = new OpenApiPetstore.Category();
//expect(instance).to.be.a(OpenApiPetstore.Category);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instane = new SwaggerPetstore.Category();
//var instane = new OpenApiPetstore.Category();
//expect(instance).to.be();
});
it('should have the property name (base name: "name")', function() {
// uncomment below and update the code to test the property name
//var instane = new SwaggerPetstore.Category();
//var instane = new OpenApiPetstore.Category();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.ClassModel();
instance = new OpenApiPetstore.ClassModel();
});
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
describe('ClassModel', function() {
it('should create an instance of ClassModel', function() {
// uncomment below and update the code to test ClassModel
//var instane = new SwaggerPetstore.ClassModel();
//expect(instance).to.be.a(SwaggerPetstore.ClassModel);
//var instane = new OpenApiPetstore.ClassModel();
//expect(instance).to.be.a(OpenApiPetstore.ClassModel);
});
it('should have the property _class (base name: "_class")', function() {
// uncomment below and update the code to test the property _class
//var instane = new SwaggerPetstore.ClassModel();
//var instane = new OpenApiPetstore.ClassModel();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Client();
instance = new OpenApiPetstore.Client();
});
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
describe('Client', function() {
it('should create an instance of Client', function() {
// uncomment below and update the code to test Client
//var instane = new SwaggerPetstore.Client();
//expect(instance).to.be.a(SwaggerPetstore.Client);
//var instane = new OpenApiPetstore.Client();
//expect(instance).to.be.a(OpenApiPetstore.Client);
});
it('should have the property client (base name: "client")', function() {
// uncomment below and update the code to test the property client
//var instane = new SwaggerPetstore.Client();
//var instane = new OpenApiPetstore.Client();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Dog();
instance = new OpenApiPetstore.Dog();
});
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
describe('Dog', function() {
it('should create an instance of Dog', function() {
// uncomment below and update the code to test Dog
//var instane = new SwaggerPetstore.Dog();
//expect(instance).to.be.a(SwaggerPetstore.Dog);
//var instane = new OpenApiPetstore.Dog();
//expect(instance).to.be.a(OpenApiPetstore.Dog);
});
it('should have the property breed (base name: "breed")', function() {
// uncomment below and update the code to test the property breed
//var instane = new SwaggerPetstore.Dog();
//var instane = new OpenApiPetstore.Dog();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.EnumArrays();
instance = new OpenApiPetstore.EnumArrays();
});
var getProperty = function(object, getter, property) {
@@ -50,19 +50,19 @@
describe('EnumArrays', function() {
it('should create an instance of EnumArrays', function() {
// uncomment below and update the code to test EnumArrays
//var instane = new SwaggerPetstore.EnumArrays();
//expect(instance).to.be.a(SwaggerPetstore.EnumArrays);
//var instane = new OpenApiPetstore.EnumArrays();
//expect(instance).to.be.a(OpenApiPetstore.EnumArrays);
});
it('should have the property justSymbol (base name: "just_symbol")', function() {
// uncomment below and update the code to test the property justSymbol
//var instane = new SwaggerPetstore.EnumArrays();
//var instane = new OpenApiPetstore.EnumArrays();
//expect(instance).to.be();
});
it('should have the property arrayEnum (base name: "array_enum")', function() {
// uncomment below and update the code to test the property arrayEnum
//var instane = new SwaggerPetstore.EnumArrays();
//var instane = new OpenApiPetstore.EnumArrays();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,9 +20,9 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
@@ -49,8 +49,8 @@
describe('EnumClass', function() {
it('should create an instance of EnumClass', function() {
// uncomment below and update the code to test EnumClass
//var instane = new SwaggerPetstore.EnumClass();
//expect(instance).to.be.a(SwaggerPetstore.EnumClass);
//var instane = new OpenApiPetstore.EnumClass();
//expect(instance).to.be.a(OpenApiPetstore.EnumClass);
});
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.EnumTest();
instance = new OpenApiPetstore.EnumTest();
});
var getProperty = function(object, getter, property) {
@@ -50,31 +50,37 @@
describe('EnumTest', function() {
it('should create an instance of EnumTest', function() {
// uncomment below and update the code to test EnumTest
//var instane = new SwaggerPetstore.EnumTest();
//expect(instance).to.be.a(SwaggerPetstore.EnumTest);
//var instane = new OpenApiPetstore.EnumTest();
//expect(instance).to.be.a(OpenApiPetstore.EnumTest);
});
it('should have the property enumString (base name: "enum_string")', function() {
// uncomment below and update the code to test the property enumString
//var instane = new SwaggerPetstore.EnumTest();
//var instane = new OpenApiPetstore.EnumTest();
//expect(instance).to.be();
});
it('should have the property enumStringRequired (base name: "enum_string_required")', function() {
// uncomment below and update the code to test the property enumStringRequired
//var instane = new OpenApiPetstore.EnumTest();
//expect(instance).to.be();
});
it('should have the property enumInteger (base name: "enum_integer")', function() {
// uncomment below and update the code to test the property enumInteger
//var instane = new SwaggerPetstore.EnumTest();
//var instane = new OpenApiPetstore.EnumTest();
//expect(instance).to.be();
});
it('should have the property enumNumber (base name: "enum_number")', function() {
// uncomment below and update the code to test the property enumNumber
//var instane = new SwaggerPetstore.EnumTest();
//var instane = new OpenApiPetstore.EnumTest();
//expect(instance).to.be();
});
it('should have the property outerEnum (base name: "outerEnum")', function() {
// uncomment below and update the code to test the property outerEnum
//var instane = new SwaggerPetstore.EnumTest();
//var instane = new OpenApiPetstore.EnumTest();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.FormatTest();
instance = new OpenApiPetstore.FormatTest();
});
var getProperty = function(object, getter, property) {
@@ -50,85 +50,85 @@
describe('FormatTest', function() {
it('should create an instance of FormatTest', function() {
// uncomment below and update the code to test FormatTest
//var instane = new SwaggerPetstore.FormatTest();
//expect(instance).to.be.a(SwaggerPetstore.FormatTest);
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be.a(OpenApiPetstore.FormatTest);
});
it('should have the property integer (base name: "integer")', function() {
// uncomment below and update the code to test the property integer
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property int32 (base name: "int32")', function() {
// uncomment below and update the code to test the property int32
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property int64 (base name: "int64")', function() {
// uncomment below and update the code to test the property int64
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property _number (base name: "number")', function() {
// uncomment below and update the code to test the property _number
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property _float (base name: "float")', function() {
// uncomment below and update the code to test the property _float
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property _double (base name: "double")', function() {
// uncomment below and update the code to test the property _double
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property _string (base name: "string")', function() {
// uncomment below and update the code to test the property _string
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property _byte (base name: "byte")', function() {
// uncomment below and update the code to test the property _byte
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property binary (base name: "binary")', function() {
// uncomment below and update the code to test the property binary
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property _date (base name: "date")', function() {
// uncomment below and update the code to test the property _date
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property dateTime (base name: "dateTime")', function() {
// uncomment below and update the code to test the property dateTime
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property uuid (base name: "uuid")', function() {
// uncomment below and update the code to test the property uuid
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});
it('should have the property password (base name: "password")', function() {
// uncomment below and update the code to test the property password
//var instane = new SwaggerPetstore.FormatTest();
//var instane = new OpenApiPetstore.FormatTest();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.HasOnlyReadOnly();
instance = new OpenApiPetstore.HasOnlyReadOnly();
});
var getProperty = function(object, getter, property) {
@@ -50,19 +50,19 @@
describe('HasOnlyReadOnly', function() {
it('should create an instance of HasOnlyReadOnly', function() {
// uncomment below and update the code to test HasOnlyReadOnly
//var instane = new SwaggerPetstore.HasOnlyReadOnly();
//expect(instance).to.be.a(SwaggerPetstore.HasOnlyReadOnly);
//var instane = new OpenApiPetstore.HasOnlyReadOnly();
//expect(instance).to.be.a(OpenApiPetstore.HasOnlyReadOnly);
});
it('should have the property bar (base name: "bar")', function() {
// uncomment below and update the code to test the property bar
//var instane = new SwaggerPetstore.HasOnlyReadOnly();
//var instane = new OpenApiPetstore.HasOnlyReadOnly();
//expect(instance).to.be();
});
it('should have the property foo (base name: "foo")', function() {
// uncomment below and update the code to test the property foo
//var instane = new SwaggerPetstore.HasOnlyReadOnly();
//var instane = new OpenApiPetstore.HasOnlyReadOnly();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.List();
instance = new OpenApiPetstore.List();
});
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
describe('List', function() {
it('should create an instance of List', function() {
// uncomment below and update the code to test List
//var instane = new SwaggerPetstore.List();
//expect(instance).to.be.a(SwaggerPetstore.List);
//var instane = new OpenApiPetstore.List();
//expect(instance).to.be.a(OpenApiPetstore.List);
});
it('should have the property _123List (base name: "123-list")', function() {
// uncomment below and update the code to test the property _123List
//var instane = new SwaggerPetstore.List();
it('should have the property _123list (base name: "123-list")', function() {
// uncomment below and update the code to test the property _123list
//var instane = new OpenApiPetstore.List();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.MapTest();
instance = new OpenApiPetstore.MapTest();
});
var getProperty = function(object, getter, property) {
@@ -50,19 +50,19 @@
describe('MapTest', function() {
it('should create an instance of MapTest', function() {
// uncomment below and update the code to test MapTest
//var instane = new SwaggerPetstore.MapTest();
//expect(instance).to.be.a(SwaggerPetstore.MapTest);
//var instane = new OpenApiPetstore.MapTest();
//expect(instance).to.be.a(OpenApiPetstore.MapTest);
});
it('should have the property mapMapOfString (base name: "map_map_of_string")', function() {
// uncomment below and update the code to test the property mapMapOfString
//var instane = new SwaggerPetstore.MapTest();
//var instane = new OpenApiPetstore.MapTest();
//expect(instance).to.be();
});
it('should have the property mapOfEnumString (base name: "map_of_enum_string")', function() {
// uncomment below and update the code to test the property mapOfEnumString
//var instane = new SwaggerPetstore.MapTest();
//var instane = new OpenApiPetstore.MapTest();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.MixedPropertiesAndAdditionalPropertiesClass();
instance = new OpenApiPetstore.MixedPropertiesAndAdditionalPropertiesClass();
});
var getProperty = function(object, getter, property) {
@@ -50,25 +50,25 @@
describe('MixedPropertiesAndAdditionalPropertiesClass', function() {
it('should create an instance of MixedPropertiesAndAdditionalPropertiesClass', function() {
// uncomment below and update the code to test MixedPropertiesAndAdditionalPropertiesClass
//var instane = new SwaggerPetstore.MixedPropertiesAndAdditionalPropertiesClass();
//expect(instance).to.be.a(SwaggerPetstore.MixedPropertiesAndAdditionalPropertiesClass);
//var instane = new OpenApiPetstore.MixedPropertiesAndAdditionalPropertiesClass();
//expect(instance).to.be.a(OpenApiPetstore.MixedPropertiesAndAdditionalPropertiesClass);
});
it('should have the property uuid (base name: "uuid")', function() {
// uncomment below and update the code to test the property uuid
//var instane = new SwaggerPetstore.MixedPropertiesAndAdditionalPropertiesClass();
//var instane = new OpenApiPetstore.MixedPropertiesAndAdditionalPropertiesClass();
//expect(instance).to.be();
});
it('should have the property dateTime (base name: "dateTime")', function() {
// uncomment below and update the code to test the property dateTime
//var instane = new SwaggerPetstore.MixedPropertiesAndAdditionalPropertiesClass();
//var instane = new OpenApiPetstore.MixedPropertiesAndAdditionalPropertiesClass();
//expect(instance).to.be();
});
it('should have the property map (base name: "map")', function() {
// uncomment below and update the code to test the property map
//var instane = new SwaggerPetstore.MixedPropertiesAndAdditionalPropertiesClass();
//var instane = new OpenApiPetstore.MixedPropertiesAndAdditionalPropertiesClass();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Model200Response();
instance = new OpenApiPetstore.Model200Response();
});
var getProperty = function(object, getter, property) {
@@ -50,19 +50,19 @@
describe('Model200Response', function() {
it('should create an instance of Model200Response', function() {
// uncomment below and update the code to test Model200Response
//var instane = new SwaggerPetstore.Model200Response();
//expect(instance).to.be.a(SwaggerPetstore.Model200Response);
//var instane = new OpenApiPetstore.Model200Response();
//expect(instance).to.be.a(OpenApiPetstore.Model200Response);
});
it('should have the property name (base name: "name")', function() {
// uncomment below and update the code to test the property name
//var instane = new SwaggerPetstore.Model200Response();
//var instane = new OpenApiPetstore.Model200Response();
//expect(instance).to.be();
});
it('should have the property _class (base name: "class")', function() {
// uncomment below and update the code to test the property _class
//var instane = new SwaggerPetstore.Model200Response();
//var instane = new OpenApiPetstore.Model200Response();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.ModelReturn();
instance = new OpenApiPetstore.ModelReturn();
});
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
describe('ModelReturn', function() {
it('should create an instance of ModelReturn', function() {
// uncomment below and update the code to test ModelReturn
//var instane = new SwaggerPetstore.ModelReturn();
//expect(instance).to.be.a(SwaggerPetstore.ModelReturn);
//var instane = new OpenApiPetstore.ModelReturn();
//expect(instance).to.be.a(OpenApiPetstore.ModelReturn);
});
it('should have the property _return (base name: "return")', function() {
// uncomment below and update the code to test the property _return
//var instane = new SwaggerPetstore.ModelReturn();
//var instane = new OpenApiPetstore.ModelReturn();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Name();
instance = new OpenApiPetstore.Name();
});
var getProperty = function(object, getter, property) {
@@ -50,31 +50,31 @@
describe('Name', function() {
it('should create an instance of Name', function() {
// uncomment below and update the code to test Name
//var instane = new SwaggerPetstore.Name();
//expect(instance).to.be.a(SwaggerPetstore.Name);
//var instane = new OpenApiPetstore.Name();
//expect(instance).to.be.a(OpenApiPetstore.Name);
});
it('should have the property name (base name: "name")', function() {
// uncomment below and update the code to test the property name
//var instane = new SwaggerPetstore.Name();
//var instane = new OpenApiPetstore.Name();
//expect(instance).to.be();
});
it('should have the property snakeCase (base name: "snake_case")', function() {
// uncomment below and update the code to test the property snakeCase
//var instane = new SwaggerPetstore.Name();
//var instane = new OpenApiPetstore.Name();
//expect(instance).to.be();
});
it('should have the property property (base name: "property")', function() {
// uncomment below and update the code to test the property property
//var instane = new SwaggerPetstore.Name();
//var instane = new OpenApiPetstore.Name();
//expect(instance).to.be();
});
it('should have the property _123Number (base name: "123Number")', function() {
// uncomment below and update the code to test the property _123Number
//var instane = new SwaggerPetstore.Name();
it('should have the property _123number (base name: "123Number")', function() {
// uncomment below and update the code to test the property _123number
//var instane = new OpenApiPetstore.Name();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.NumberOnly();
instance = new OpenApiPetstore.NumberOnly();
});
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
describe('NumberOnly', function() {
it('should create an instance of NumberOnly', function() {
// uncomment below and update the code to test NumberOnly
//var instane = new SwaggerPetstore.NumberOnly();
//expect(instance).to.be.a(SwaggerPetstore.NumberOnly);
//var instane = new OpenApiPetstore.NumberOnly();
//expect(instance).to.be.a(OpenApiPetstore.NumberOnly);
});
it('should have the property justNumber (base name: "JustNumber")', function() {
// uncomment below and update the code to test the property justNumber
//var instane = new SwaggerPetstore.NumberOnly();
//var instane = new OpenApiPetstore.NumberOnly();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Order();
instance = new OpenApiPetstore.Order();
});
var getProperty = function(object, getter, property) {
@@ -50,43 +50,43 @@
describe('Order', function() {
it('should create an instance of Order', function() {
// uncomment below and update the code to test Order
//var instane = new SwaggerPetstore.Order();
//expect(instance).to.be.a(SwaggerPetstore.Order);
//var instane = new OpenApiPetstore.Order();
//expect(instance).to.be.a(OpenApiPetstore.Order);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instane = new SwaggerPetstore.Order();
//var instane = new OpenApiPetstore.Order();
//expect(instance).to.be();
});
it('should have the property petId (base name: "petId")', function() {
// uncomment below and update the code to test the property petId
//var instane = new SwaggerPetstore.Order();
//var instane = new OpenApiPetstore.Order();
//expect(instance).to.be();
});
it('should have the property quantity (base name: "quantity")', function() {
// uncomment below and update the code to test the property quantity
//var instane = new SwaggerPetstore.Order();
//var instane = new OpenApiPetstore.Order();
//expect(instance).to.be();
});
it('should have the property shipDate (base name: "shipDate")', function() {
// uncomment below and update the code to test the property shipDate
//var instane = new SwaggerPetstore.Order();
//var instane = new OpenApiPetstore.Order();
//expect(instance).to.be();
});
it('should have the property status (base name: "status")', function() {
// uncomment below and update the code to test the property status
//var instane = new SwaggerPetstore.Order();
//var instane = new OpenApiPetstore.Order();
//expect(instance).to.be();
});
it('should have the property complete (base name: "complete")', function() {
// uncomment below and update the code to test the property complete
//var instane = new SwaggerPetstore.Order();
//var instane = new OpenApiPetstore.Order();
//expect(instance).to.be();
});

View File

@@ -28,7 +28,8 @@
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.OuterBoolean();
// OuterBoolean is not a member of SwaggerPetstore
//instance = new SwaggerPetstore.OuterBoolean();
});
var getProperty = function(object, getter, property) {

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.OuterComposite();
instance = new OpenApiPetstore.OuterComposite();
});
var getProperty = function(object, getter, property) {
@@ -50,25 +50,25 @@
describe('OuterComposite', function() {
it('should create an instance of OuterComposite', function() {
// uncomment below and update the code to test OuterComposite
//var instane = new SwaggerPetstore.OuterComposite();
//expect(instance).to.be.a(SwaggerPetstore.OuterComposite);
//var instane = new OpenApiPetstore.OuterComposite();
//expect(instance).to.be.a(OpenApiPetstore.OuterComposite);
});
it('should have the property myNumber (base name: "my_number")', function() {
// uncomment below and update the code to test the property myNumber
//var instane = new SwaggerPetstore.OuterComposite();
//var instane = new OpenApiPetstore.OuterComposite();
//expect(instance).to.be();
});
it('should have the property myString (base name: "my_string")', function() {
// uncomment below and update the code to test the property myString
//var instane = new SwaggerPetstore.OuterComposite();
//var instane = new OpenApiPetstore.OuterComposite();
//expect(instance).to.be();
});
it('should have the property myBoolean (base name: "my_boolean")', function() {
// uncomment below and update the code to test the property myBoolean
//var instane = new SwaggerPetstore.OuterComposite();
//var instane = new OpenApiPetstore.OuterComposite();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,9 +20,9 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
@@ -49,8 +49,8 @@
describe('OuterEnum', function() {
it('should create an instance of OuterEnum', function() {
// uncomment below and update the code to test OuterEnum
//var instane = new SwaggerPetstore.OuterEnum();
//expect(instance).to.be.a(SwaggerPetstore.OuterEnum);
//var instane = new OpenApiPetstore.OuterEnum();
//expect(instance).to.be.a(OpenApiPetstore.OuterEnum);
});
});

View File

@@ -28,7 +28,8 @@
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.OuterNumber();
// OuterNumber is not a member of SwaggerPetstore
//instance = new SwaggerPetstore.OuterNumber();
});
var getProperty = function(object, getter, property) {

View File

@@ -28,7 +28,8 @@
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.OuterString();
// OuterString is not a member of SwaggerPetstore
//instance = new SwaggerPetstore.OuterString();
});
var getProperty = function(object, getter, property) {

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Pet();
instance = new OpenApiPetstore.Pet();
});
var getProperty = function(object, getter, property) {
@@ -50,43 +50,43 @@
describe('Pet', function() {
it('should create an instance of Pet', function() {
// uncomment below and update the code to test Pet
//var instane = new SwaggerPetstore.Pet();
//expect(instance).to.be.a(SwaggerPetstore.Pet);
//var instane = new OpenApiPetstore.Pet();
//expect(instance).to.be.a(OpenApiPetstore.Pet);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instane = new SwaggerPetstore.Pet();
//var instane = new OpenApiPetstore.Pet();
//expect(instance).to.be();
});
it('should have the property category (base name: "category")', function() {
// uncomment below and update the code to test the property category
//var instane = new SwaggerPetstore.Pet();
//var instane = new OpenApiPetstore.Pet();
//expect(instance).to.be();
});
it('should have the property name (base name: "name")', function() {
// uncomment below and update the code to test the property name
//var instane = new SwaggerPetstore.Pet();
//var instane = new OpenApiPetstore.Pet();
//expect(instance).to.be();
});
it('should have the property photoUrls (base name: "photoUrls")', function() {
// uncomment below and update the code to test the property photoUrls
//var instane = new SwaggerPetstore.Pet();
//var instane = new OpenApiPetstore.Pet();
//expect(instance).to.be();
});
it('should have the property tags (base name: "tags")', function() {
// uncomment below and update the code to test the property tags
//var instane = new SwaggerPetstore.Pet();
//var instane = new OpenApiPetstore.Pet();
//expect(instance).to.be();
});
it('should have the property status (base name: "status")', function() {
// uncomment below and update the code to test the property status
//var instane = new SwaggerPetstore.Pet();
//var instane = new OpenApiPetstore.Pet();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.ReadOnlyFirst();
instance = new OpenApiPetstore.ReadOnlyFirst();
});
var getProperty = function(object, getter, property) {
@@ -50,19 +50,19 @@
describe('ReadOnlyFirst', function() {
it('should create an instance of ReadOnlyFirst', function() {
// uncomment below and update the code to test ReadOnlyFirst
//var instane = new SwaggerPetstore.ReadOnlyFirst();
//expect(instance).to.be.a(SwaggerPetstore.ReadOnlyFirst);
//var instane = new OpenApiPetstore.ReadOnlyFirst();
//expect(instance).to.be.a(OpenApiPetstore.ReadOnlyFirst);
});
it('should have the property bar (base name: "bar")', function() {
// uncomment below and update the code to test the property bar
//var instane = new SwaggerPetstore.ReadOnlyFirst();
//var instane = new OpenApiPetstore.ReadOnlyFirst();
//expect(instance).to.be();
});
it('should have the property baz (base name: "baz")', function() {
// uncomment below and update the code to test the property baz
//var instane = new SwaggerPetstore.ReadOnlyFirst();
//var instane = new OpenApiPetstore.ReadOnlyFirst();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.SpecialModelName();
instance = new OpenApiPetstore.SpecialModelName();
});
var getProperty = function(object, getter, property) {
@@ -50,13 +50,13 @@
describe('SpecialModelName', function() {
it('should create an instance of SpecialModelName', function() {
// uncomment below and update the code to test SpecialModelName
//var instane = new SwaggerPetstore.SpecialModelName();
//expect(instance).to.be.a(SwaggerPetstore.SpecialModelName);
//var instane = new OpenApiPetstore.SpecialModelName();
//expect(instance).to.be.a(OpenApiPetstore.SpecialModelName);
});
it('should have the property specialPropertyName (base name: "$special[property.name]")', function() {
// uncomment below and update the code to test the property specialPropertyName
//var instane = new SwaggerPetstore.SpecialModelName();
//var instane = new OpenApiPetstore.SpecialModelName();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.Tag();
instance = new OpenApiPetstore.Tag();
});
var getProperty = function(object, getter, property) {
@@ -50,19 +50,19 @@
describe('Tag', function() {
it('should create an instance of Tag', function() {
// uncomment below and update the code to test Tag
//var instane = new SwaggerPetstore.Tag();
//expect(instance).to.be.a(SwaggerPetstore.Tag);
//var instane = new OpenApiPetstore.Tag();
//expect(instance).to.be.a(OpenApiPetstore.Tag);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instane = new SwaggerPetstore.Tag();
//var instane = new OpenApiPetstore.Tag();
//expect(instance).to.be();
});
it('should have the property name (base name: "name")', function() {
// uncomment below and update the code to test the property name
//var instane = new SwaggerPetstore.Tag();
//var instane = new OpenApiPetstore.Tag();
//expect(instance).to.be();
});

View File

@@ -1,12 +1,12 @@
/**
* Swagger Petstore
* OpenAPI Petstore
* This spec is mainly for testing Petstore server and contains fake endpoints, models. Please do not use this for any other purpose. Special characters: \" \\
*
* OpenAPI spec version: 1.0.0
* Contact: apiteam@swagger.io
*
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*
*/
@@ -20,15 +20,15 @@
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.SwaggerPetstore);
factory(root.expect, root.OpenApiPetstore);
}
}(this, function(expect, SwaggerPetstore) {
}(this, function(expect, OpenApiPetstore) {
'use strict';
var instance;
beforeEach(function() {
instance = new SwaggerPetstore.User();
instance = new OpenApiPetstore.User();
});
var getProperty = function(object, getter, property) {
@@ -50,55 +50,55 @@
describe('User', function() {
it('should create an instance of User', function() {
// uncomment below and update the code to test User
//var instane = new SwaggerPetstore.User();
//expect(instance).to.be.a(SwaggerPetstore.User);
//var instane = new OpenApiPetstore.User();
//expect(instance).to.be.a(OpenApiPetstore.User);
});
it('should have the property id (base name: "id")', function() {
// uncomment below and update the code to test the property id
//var instane = new SwaggerPetstore.User();
//var instane = new OpenApiPetstore.User();
//expect(instance).to.be();
});
it('should have the property username (base name: "username")', function() {
// uncomment below and update the code to test the property username
//var instane = new SwaggerPetstore.User();
//var instane = new OpenApiPetstore.User();
//expect(instance).to.be();
});
it('should have the property firstName (base name: "firstName")', function() {
// uncomment below and update the code to test the property firstName
//var instane = new SwaggerPetstore.User();
//var instane = new OpenApiPetstore.User();
//expect(instance).to.be();
});
it('should have the property lastName (base name: "lastName")', function() {
// uncomment below and update the code to test the property lastName
//var instane = new SwaggerPetstore.User();
//var instane = new OpenApiPetstore.User();
//expect(instance).to.be();
});
it('should have the property email (base name: "email")', function() {
// uncomment below and update the code to test the property email
//var instane = new SwaggerPetstore.User();
//var instane = new OpenApiPetstore.User();
//expect(instance).to.be();
});
it('should have the property password (base name: "password")', function() {
// uncomment below and update the code to test the property password
//var instane = new SwaggerPetstore.User();
//var instane = new OpenApiPetstore.User();
//expect(instance).to.be();
});
it('should have the property phone (base name: "phone")', function() {
// uncomment below and update the code to test the property phone
//var instane = new SwaggerPetstore.User();
//var instane = new OpenApiPetstore.User();
//expect(instance).to.be();
});
it('should have the property userStatus (base name: "userStatus")', function() {
// uncomment below and update the code to test the property userStatus
//var instane = new SwaggerPetstore.User();
//var instane = new OpenApiPetstore.User();
//expect(instance).to.be();
});