mirror of
https://github.com/enjoy-digital/usb3_pipe.git
synced 2025-01-04 10:18:41 +08:00
23 lines
498 B
Python
23 lines
498 B
Python
# This file is Copyright (c) 2019 Florent Kermarrec <florent@enjoy-digital.fr>
|
|
# License: BSD
|
|
|
|
import unittest
|
|
|
|
from migen import *
|
|
|
|
from usb3_pipe import ltssm
|
|
|
|
|
|
class TestLTSSM(unittest.TestCase):
|
|
def test_ltssm_fsm_syntax(self):
|
|
fsm = ltssm.LTSSMFSM()
|
|
|
|
def test_ss_inactive_fsm_syntax(self):
|
|
fsm = ltssm.SSInactiveFSM()
|
|
|
|
def test_rx_detect_fsm_syntax(self):
|
|
fsm = ltssm.RXDetectFSM()
|
|
|
|
#def test_polling_fsm_syntax(self):
|
|
# fsm = ltssm.PollingFSM()
|