upstox-js-sdk
Version:
The official Node Js client for communicating with the Upstox API
82 lines (70 loc) • 3.02 kB
JavaScript
/*
* OpenAPI definition
* No description provided (generated by Swagger Codegen https://github.com/swagger-api/swagger-codegen)
*
* OpenAPI spec version: v0
*
* NOTE: This class is auto generated by the swagger code generator program.
* https://github.com/swagger-api/swagger-codegen.git
*
* Swagger Codegen version: 3.0.66
*
* Do not edit the class manually.
*
*/
(function(root, factory) {
if (typeof define === 'function' && define.amd) {
// AMD.
define(['expect.js', '../../src/index'], factory);
} else if (typeof module === 'object' && module.exports) {
// CommonJS-like environments that support module.exports, like Node.
factory(require('expect.js'), require('../../src/index'));
} else {
// Browser globals (root is window)
factory(root.expect, root.UpstoxClient);
}
}(this, function(expect, UpstoxClient) {
'use strict';
var instance;
describe('(package)', function() {
describe('GttPlaceOrderRequest', function() {
beforeEach(function() {
instance = new UpstoxClient.GttPlaceOrderRequest();
});
it('should create an instance of GttPlaceOrderRequest', function() {
// TODO: update the code to test GttPlaceOrderRequest
expect(instance).to.be.a(UpstoxClient.GttPlaceOrderRequest);
});
it('should have the property type (base name: "type")', function() {
// TODO: update the code to test the property type
expect(instance).to.have.property('type');
// expect(instance.type).to.be(expectedValueLiteral);
});
it('should have the property quantity (base name: "quantity")', function() {
// TODO: update the code to test the property quantity
expect(instance).to.have.property('quantity');
// expect(instance.quantity).to.be(expectedValueLiteral);
});
it('should have the property product (base name: "product")', function() {
// TODO: update the code to test the property product
expect(instance).to.have.property('product');
// expect(instance.product).to.be(expectedValueLiteral);
});
it('should have the property rules (base name: "rules")', function() {
// TODO: update the code to test the property rules
expect(instance).to.have.property('rules');
// expect(instance.rules).to.be(expectedValueLiteral);
});
it('should have the property instrumentToken (base name: "instrument_token")', function() {
// TODO: update the code to test the property instrumentToken
expect(instance).to.have.property('instrumentToken');
// expect(instance.instrumentToken).to.be(expectedValueLiteral);
});
it('should have the property transactionType (base name: "transaction_type")', function() {
// TODO: update the code to test the property transactionType
expect(instance).to.have.property('transactionType');
// expect(instance.transactionType).to.be(expectedValueLiteral);
});
});
});
}));