forked from lthn/blockchain
59 lines
1.5 KiB
Python
59 lines
1.5 KiB
Python
|
|
# 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()
|