|
| 1 | +/** |
| 2 | + * Delve Client SDK |
| 3 | + * This is a Client SDK for Delve API |
| 4 | + * |
| 5 | + * The version of the OpenAPI document: 1.0.9 |
| 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.DelveClientSdk); |
| 24 | + } |
| 25 | +}(this, function(expect, DelveClientSdk) { |
| 26 | + 'use strict'; |
| 27 | + |
| 28 | + var instance; |
| 29 | + |
| 30 | + beforeEach(function() { |
| 31 | + instance = new DelveClientSdk.StatusActionResult(); |
| 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('StatusActionResult', function() { |
| 51 | + it('should create an instance of StatusActionResult', function() { |
| 52 | + // uncomment below and update the code to test StatusActionResult |
| 53 | + //var instane = new DelveClientSdk.StatusActionResult(); |
| 54 | + //expect(instance).to.be.a(DelveClientSdk.StatusActionResult); |
| 55 | + }); |
| 56 | + |
| 57 | + }); |
| 58 | + |
| 59 | +})); |
0 commit comments