46 lines
946 B
Python
46 lines
946 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
Master
|
|
|
|
No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
|
|
|
|
The version of the OpenAPI document: 0.1.0
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import unittest
|
|
|
|
from openapi_client.api.default_api import DefaultApi
|
|
|
|
|
|
class TestDefaultApi(unittest.TestCase):
|
|
"""DefaultApi unit test stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = DefaultApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_game_decision_game_decision_post(self) -> None:
|
|
"""Test case for game_decision_game_decision_post
|
|
|
|
Game Decision
|
|
"""
|
|
pass
|
|
|
|
def test_game_start_game_start_post(self) -> None:
|
|
"""Test case for game_start_game_start_post
|
|
|
|
Game Start
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|