/** * board * Taxnexus Onboarding Service * * 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.Board); } }(this, function(expect, Board) { 'use strict'; var instance; beforeEach(function() { instance = new Board.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 Board.TenantUser(); //expect(instance).to.be.a(Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.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 Board.TenantUser(); //expect(instance).to.be(); }); }); }));