k1x-factorytest/tests/manual/test_01_ddr.py
2024-05-30 23:19:44 +08:00

19 lines
413 B
Python

from unittest import TestCase
import os
class DDRTest(TestCase):
LANGUAGES = {
'zh': {
'DDRTest': '内存',
'test_capacity': '读取容量'
},
'en': {
'DDRTest': 'DDR',
'test_capacity': 'Read capacity'
}
}
def test_capacity(self):
# implement in qtview
self.assertTrue(os.path.exists('/proc/meminfo'))