Example #1
0
    def run(self):
        print("Running python tests")

        print("LEDs Tests")
        TestCase.run(TestLeds())
        print("____________________")

        print("Switches Tests")
        TestCase.run(TestSwitches())
        print("____________________")

        print("UART Tests")
        TestCase.run(TestUart())
        print("____________________")

        print("EEPROM Tests")
        TestCase.run(TestEEPROM())
        print("____________________")

        print("DAC Tests")
        TestCase.run(TestDAC())
        print("____________________")


        print("ADC Tests")
        TestCase.run(TestADC())
        print("____________________")

        print("GPIOs Tests")
        TestCase.run(TestGPIO())
        print("____________________")

        print("RS485 Tests")
        TestCase.run(TestRS485())
        print("____________________")

        print("Timers Tests")
        TestCase.run(TestTimers())
        print("____________________")



        print("Statistics:")
        TestCase.printStatistics()