53 lines
947 B
Python
53 lines
947 B
Python
# coding: utf-8
|
|
|
|
"""
|
|
boardmate_api API
|
|
|
|
boardmate_api API
|
|
|
|
The version of the OpenAPI document: 1.0.0
|
|
Generated by OpenAPI Generator (https://openapi-generator.tech)
|
|
|
|
Do not edit the class manually.
|
|
""" # noqa: E501
|
|
|
|
|
|
import unittest
|
|
|
|
from board_mate_client.api.default_api import DefaultApi
|
|
|
|
|
|
class TestDefaultApi(unittest.TestCase):
|
|
"""DefaultApi unit chesscog-bck stubs"""
|
|
|
|
def setUp(self) -> None:
|
|
self.api = DefaultApi()
|
|
|
|
def tearDown(self) -> None:
|
|
pass
|
|
|
|
def test_add_move(self) -> None:
|
|
"""Test case for add_move
|
|
|
|
POST moves/add/{gameId}
|
|
"""
|
|
pass
|
|
|
|
def test_create_party(self) -> None:
|
|
"""Test case for create_party
|
|
|
|
POST create
|
|
"""
|
|
pass
|
|
|
|
def test_retrieve_games(self) -> None:
|
|
"""Test case for retrieve_games
|
|
|
|
GET games/{id}
|
|
"""
|
|
pass
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|