39 lines
725 B
Python
39 lines
725 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
AISF API
|
|
|
|
This API gives you the ability to interact with AISF's neural networks
|
|
|
|
The version of the OpenAPI document: 1.0
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import unittest
|
|
|
|
from ai_core_api_client.api.metrics_api import MetricsApi
|
|
|
|
|
|
class TestMetricsApi(unittest.TestCase):
|
|
"""MetricsApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = MetricsApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_metrics_get(self) -> None:
|
|
"""Test case for metrics_get
|
|
|
|
Get company metrics
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|