mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +08:00
16 lines
294 B
Python
16 lines
294 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 )
|
|
|
|
# self.assertNotEqual( None, pykd.dia )
|