mirror of
https://gitee.com/bianbu-linux/factorytest
synced 2025-06-28 03:02:41 -04:00
19 lines
413 B
Python
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'))
|