Files
board-mate/rpi/api-resources/board_mate_client/test/test_move_dto.py
2025-12-27 17:45:08 +01:00

52 lines
1.2 KiB
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.models.move_dto import MoveDto
class TestMoveDto(unittest.TestCase):
"""MoveDto unit chesscog-bck stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def make_instance(self, include_optional) -> MoveDto:
"""Test MoveDto
include_option is a boolean, when False only required
params are included, when True both required and
optional params are included """
# uncomment below to create an instance of `MoveDto`
"""
model = MoveDto()
if include_optional:
return MoveDto(
notation = ''
)
else:
return MoveDto(
)
"""
def testMoveDto(self):
"""Test MoveDto"""
# inst_req_only = self.make_instance(include_optional=False)
# inst_req_and_optional = self.make_instance(include_optional=True)
if __name__ == '__main__':
unittest.main()