-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_protobuf_null_value.py
35 lines (23 loc) · 1.39 KB
/
test_protobuf_null_value.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
# coding: utf-8
"""
Frontier Administration API
The Frontier APIs adhere to the OpenAPI specification, also known as Swagger, which provides a standardized approach for designing, documenting, and consuming RESTful APIs. With OpenAPI, you gain a clear understanding of the API endpoints, request/response structures, and authentication mechanisms supported by the Frontier APIs. By leveraging the OpenAPI specification, developers can easily explore and interact with the Frontier APIs using a variety of tools and libraries. The OpenAPI specification enables automatic code generation, interactive API documentation, and seamless integration with API testing frameworks, making it easier than ever to integrate Frontier into your existing applications and workflows.
The version of the OpenAPI document: 0.2.0
Contact: [email protected]
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
import datetime
from frontier_api.models.protobuf_null_value import ProtobufNullValue # noqa: E501
class TestProtobufNullValue(unittest.TestCase):
"""ProtobufNullValue unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def testProtobufNullValue(self):
"""Test ProtobufNullValue"""
# inst = ProtobufNullValue()
if __name__ == '__main__':
unittest.main()