mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +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") )
|
|
|