=begin #Tripletex API OpenAPI spec version: 2.69.5 Generated by: https://github.com/swagger-api/swagger-codegen.git Swagger Codegen version: 2.4.24 =end require 'spec_helper' require 'json' # Unit tests for TripletexRubyClient::BalanceSheetApi # Automatically generated by swagger-codegen (github.com/swagger-api/swagger-codegen) # Please update as you see appropriate describe 'BalanceSheetApi' do before do # run before each test @instance = TripletexRubyClient::BalanceSheetApi.new end after do # run after each test end describe 'test an instance of BalanceSheetApi' do it 'should create an instance of BalanceSheetApi' do expect(@instance).to be_instance_of(TripletexRubyClient::BalanceSheetApi) end end # unit tests for search # [BETA] Get balance sheet (saldobalanse). # # @param date_from Format is yyyy-MM-dd (from and incl.). # @param date_to Format is yyyy-MM-dd (to and excl.). # @param [Hash] opts the optional parameters # @option opts [Integer] :account_number_from From and including # @option opts [Integer] :account_number_to To and excluding # @option opts [Integer] :customer_id Element ID # @option opts [Integer] :employee_id Element ID # @option opts [Integer] :department_id Element ID # @option opts [Integer] :project_id Element ID # @option opts [BOOLEAN] :include_sub_projects Should sub projects of the given project be included # @option opts [BOOLEAN] :include_active_accounts_without_movements Should active accounts with no movements be included # @option opts [Integer] :from From index # @option opts [Integer] :count Number of elements to return # @option opts [String] :sorting Sorting pattern # @option opts [String] :fields Fields filter pattern # @return [ListResponseBalanceSheetAccount] describe 'search test' do it 'should work' do # assertion here. ref: https://www.relishapp.com/rspec/rspec-expectations/docs/built-in-matchers end end end