|
| 1 | +/** |
| 2 | + * Delve Client SDK |
| 3 | + * This is a Client SDK for Delve API |
| 4 | + * |
| 5 | + * The version of the OpenAPI document: 1.1.3 |
| 6 | + * Contact: support@relational.ai |
| 7 | + * |
| 8 | + * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). |
| 9 | + * https://openapi-generator.tech |
| 10 | + * Do not edit the class manually. |
| 11 | + * |
| 12 | + */ |
| 13 | + |
| 14 | +(function(root, factory) { |
| 15 | + if (typeof define === 'function' && define.amd) { |
| 16 | + // AMD. |
| 17 | + define(['expect.js', process.cwd()+'/src/index'], factory); |
| 18 | + } else if (typeof module === 'object' && module.exports) { |
| 19 | + // CommonJS-like environments that support module.exports, like Node. |
| 20 | + factory(require('expect.js'), require(process.cwd()+'/src/index')); |
| 21 | + } else { |
| 22 | + // Browser globals (root is window) |
| 23 | + factory(root.expect, root.RaiDbSdk); |
| 24 | + } |
| 25 | +}(this, function(expect, RaiDbSdk) { |
| 26 | + 'use strict'; |
| 27 | + |
| 28 | + var instance; |
| 29 | + |
| 30 | + beforeEach(function() { |
| 31 | + instance = new RaiDbSdk.ShadowError(); |
| 32 | + }); |
| 33 | + |
| 34 | + var getProperty = function(object, getter, property) { |
| 35 | + // Use getter method if present; otherwise, get the property directly. |
| 36 | + if (typeof object[getter] === 'function') |
| 37 | + return object[getter](); |
| 38 | + else |
| 39 | + return object[property]; |
| 40 | + } |
| 41 | + |
| 42 | + var setProperty = function(object, setter, property, value) { |
| 43 | + // Use setter method if present; otherwise, set the property directly. |
| 44 | + if (typeof object[setter] === 'function') |
| 45 | + object[setter](value); |
| 46 | + else |
| 47 | + object[property] = value; |
| 48 | + } |
| 49 | + |
| 50 | + describe('ShadowError', function() { |
| 51 | + it('should create an instance of ShadowError', function() { |
| 52 | + // uncomment below and update the code to test ShadowError |
| 53 | + //var instane = new RaiDbSdk.ShadowError(); |
| 54 | + //expect(instance).to.be.a(RaiDbSdk.ShadowError); |
| 55 | + }); |
| 56 | + |
| 57 | + it('should have the property range (base name: "range")', function() { |
| 58 | + // uncomment below and update the code to test the property range |
| 59 | + //var instane = new RaiDbSdk.ShadowError(); |
| 60 | + //expect(instance).to.be(); |
| 61 | + }); |
| 62 | + |
| 63 | + it('should have the property shadowed (base name: "shadowed")', function() { |
| 64 | + // uncomment below and update the code to test the property shadowed |
| 65 | + //var instane = new RaiDbSdk.ShadowError(); |
| 66 | + //expect(instance).to.be(); |
| 67 | + }); |
| 68 | + |
| 69 | + it('should have the property shadower (base name: "shadower")', function() { |
| 70 | + // uncomment below and update the code to test the property shadower |
| 71 | + //var instane = new RaiDbSdk.ShadowError(); |
| 72 | + //expect(instance).to.be(); |
| 73 | + }); |
| 74 | + |
| 75 | + it('should have the property _var (base name: "var")', function() { |
| 76 | + // uncomment below and update the code to test the property _var |
| 77 | + //var instane = new RaiDbSdk.ShadowError(); |
| 78 | + //expect(instance).to.be(); |
| 79 | + }); |
| 80 | + |
| 81 | + }); |
| 82 | + |
| 83 | +})); |
0 commit comments