mirror of
https://github.com/ivellioscolin/pykd.git
synced 2025-04-20 03:23:23 +08:00
14 lines
176 B
Python
14 lines
176 B
Python
#
|
|
#
|
|
#
|
|
|
|
import unittest
|
|
import target
|
|
|
|
class BaseTest( unittest.TestCase ):
|
|
|
|
def test1( self ):
|
|
self.assertNotEqual( target.module, None )
|
|
|
|
|
|
|