mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-21 04:13:22 +08:00
11 lines
184 B
Python
11 lines
184 B
Python
![]() |
|
||
|
import unittest
|
||
|
import target
|
||
|
import pykd
|
||
|
|
||
|
class DbgcmdTest( unittest.TestCase ):
|
||
|
|
||
|
def testDbgCommand( self ):
|
||
|
self.assertNotEqual( "", pykd.dbgCommand("lm") )
|
||
|
|