-
Notifications
You must be signed in to change notification settings - Fork 0
/
test_error_response.py
39 lines (26 loc) · 1.01 KB
/
test_error_response.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
# coding: utf-8
"""
Fingerprint Pro Server API
Fingerprint Pro Server API provides a way for validating visitors’ data issued by Fingerprint Pro. # noqa: E501
OpenAPI spec version: 3
Contact: [email protected]
Generated by: https://github.com/swagger-api/swagger-codegen.git
"""
from __future__ import absolute_import
import unittest
import fingerprint_pro_server_api_sdk
from fingerprint_pro_server_api_sdk.models.error_response import ErrorResponse # noqa: E501
from fingerprint_pro_server_api_sdk.rest import ApiException
class TestErrorResponse(unittest.TestCase):
"""ErrorResponse unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testErrorResponse(self):
"""Test ErrorResponse"""
# FIXME: construct object with mandatory attributes with example values
# model = fingerprint_pro_server_api_sdk.models.error_response.ErrorResponse() # noqa: E501
pass
if __name__ == '__main__':
unittest.main()