mirror of
https://github.com/chipsec/chipsec
synced 2026-06-08 13:31:00 +00:00
15 lines
285 B
Python
15 lines
285 B
Python
import unittest
|
|
|
|
from tests.software import util
|
|
|
|
|
|
class TestPlatformChipsecUtil(util.TestChipsecUtil):
|
|
"""Test the platform commands exposed by chipsec_utils."""
|
|
|
|
def test_platform(self):
|
|
self._chipsec_util("platform")
|
|
|
|
|
|
if __name__ == '__main__':
|
|
unittest.main()
|