mirror of https://github.com/vernonkeenan/lib
156 lines
5.6 KiB
JavaScript
156 lines
5.6 KiB
JavaScript
/**
|
|
* devops
|
|
* System Operations Microservice
|
|
*
|
|
* The version of the OpenAPI document: 0.0.2
|
|
* Contact: noc@taxnexus.net
|
|
*
|
|
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
|
|
* https://openapi-generator.tech
|
|
* Do not edit the class manually.
|
|
*
|
|
*/
|
|
|
|
(function(root, factory) {
|
|
if (typeof define === 'function' && define.amd) {
|
|
// AMD.
|
|
define(['expect.js', process.cwd()+'/src/index'], factory);
|
|
} else if (typeof module === 'object' && module.exports) {
|
|
// CommonJS-like environments that support module.exports, like Node.
|
|
factory(require('expect.js'), require(process.cwd()+'/src/index'));
|
|
} else {
|
|
// Browser globals (root is window)
|
|
factory(root.expect, root.Devops);
|
|
}
|
|
}(this, function(expect, Devops) {
|
|
'use strict';
|
|
|
|
var instance;
|
|
|
|
beforeEach(function() {
|
|
instance = new Devops.TenantUser();
|
|
});
|
|
|
|
var getProperty = function(object, getter, property) {
|
|
// Use getter method if present; otherwise, get the property directly.
|
|
if (typeof object[getter] === 'function')
|
|
return object[getter]();
|
|
else
|
|
return object[property];
|
|
}
|
|
|
|
var setProperty = function(object, setter, property, value) {
|
|
// Use setter method if present; otherwise, set the property directly.
|
|
if (typeof object[setter] === 'function')
|
|
object[setter](value);
|
|
else
|
|
object[property] = value;
|
|
}
|
|
|
|
describe('TenantUser', function() {
|
|
it('should create an instance of TenantUser', function() {
|
|
// uncomment below and update the code to test TenantUser
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be.a(Devops.TenantUser);
|
|
});
|
|
|
|
it('should have the property accessLevel (base name: "AccessLevel")', function() {
|
|
// uncomment below and update the code to test the property accessLevel
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property accountID (base name: "AccountID")', function() {
|
|
// uncomment below and update the code to test the property accountID
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property auth0UserID (base name: "Auth0UserID")', function() {
|
|
// uncomment below and update the code to test the property auth0UserID
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property companyName (base name: "CompanyName")', function() {
|
|
// uncomment below and update the code to test the property companyName
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property contactID (base name: "ContactID")', function() {
|
|
// uncomment below and update the code to test the property contactID
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property taxnexusAccount (base name: "TaxnexusAccount")', function() {
|
|
// uncomment below and update the code to test the property taxnexusAccount
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property tenantActive (base name: "TenantActive")', function() {
|
|
// uncomment below and update the code to test the property tenantActive
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property tenantID (base name: "TenantID")', function() {
|
|
// uncomment below and update the code to test the property tenantID
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property tenantName (base name: "TenantName")', function() {
|
|
// uncomment below and update the code to test the property tenantName
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property tenantStatus (base name: "TenantStatus")', function() {
|
|
// uncomment below and update the code to test the property tenantStatus
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property tenantType (base name: "TenantType")', function() {
|
|
// uncomment below and update the code to test the property tenantType
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property tenantVersion (base name: "TenantVersion")', function() {
|
|
// uncomment below and update the code to test the property tenantVersion
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property userEmail (base name: "UserEmail")', function() {
|
|
// uncomment below and update the code to test the property userEmail
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property userFullName (base name: "UserFullName")', function() {
|
|
// uncomment below and update the code to test the property userFullName
|
|
//var instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
it('should have the property userID (base name: "UserID")', function() {
|
|
// uncomment below and update the code to test the property userID
|
|
//var instance = new Devops.TenantUser();
|
|
//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 instance = new Devops.TenantUser();
|
|
//expect(instance).to.be();
|
|
});
|
|
|
|
});
|
|
|
|
}));
|