mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 19:53:22 +08:00
15 lines
238 B
Python
15 lines
238 B
Python
#
|
|
#
|
|
#
|
|
|
|
import unittest
|
|
import target
|
|
import pykd
|
|
|
|
class BaseTest( unittest.TestCase ):
|
|
|
|
def testImport( self ):
|
|
self.assertNotEqual( None, pykd.module )
|
|
self.assertNotEqual( None, pykd.dbgClient )
|
|
|