1
0
Fork 0
forked from lthn/blockchain
blockchain/utils/sdk/client/python/test/test_pos_entry_model.py
Snider 2852702a4b Add Python SDK for lthn API
Introduces a new Python client SDK for the lthn API, generated via OpenAPI Generator. Includes source code, models, API classes, documentation, tests, CI/CD workflows for GitHub and GitLab, and project configuration files.
2025-10-19 15:15:41 +01:00

58 lines
1.5 KiB
Python
Generated

# coding: utf-8
"""
Lethean Blockchain API
OpenAPI for Lethean Blockchain
The version of the OpenAPI document: 6.0.1
Generated by OpenAPI Generator (https://openapi-generator.tech)
Do not edit the class manually.
""" # noqa: E501
import unittest
from lthn.models.pos_entry_model import PosEntryModel
class TestPosEntryModel(unittest.TestCase):
"""PosEntryModel unit test stubs"""
def setUp(self):
pass
def tearDown(self):
pass
def make_instance(self, include_optional) -> PosEntryModel:
"""Test PosEntryModel
include_optional 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 `PosEntryModel`
"""
model = PosEntryModel()
if include_optional:
return PosEntryModel(
amount = 56,
g_index = 56,
keyimage = '',
block_timestamp = 56,
stake_unlock_time = 56,
tx_id = '',
tx_out_index = 56,
wallet_index = 56
)
else:
return PosEntryModel(
)
"""
def testPosEntryModel(self):
"""Test PosEntryModel"""
# inst_req_only = self.make_instance(include_optional=False)
# inst_req_and_optional = self.make_instance(include_optional=True)
if __name__ == '__main__':
unittest.main()