add base for all tests
This commit is contained in:
parent
4eaa8e88c1
commit
f7013ebad9
14
tests/deepstate_base.py
Normal file
14
tests/deepstate_base.py
Normal file
@ -0,0 +1,14 @@
|
|||||||
|
from __future__ import print_function
|
||||||
|
from unittest import TestCase
|
||||||
|
import logrun
|
||||||
|
|
||||||
|
|
||||||
|
class DeepStateTestCase(TestCase):
|
||||||
|
def test_angr(self):
|
||||||
|
self.run_deepstate("deepstate-angr")
|
||||||
|
|
||||||
|
def test_manticore(self):
|
||||||
|
self.run_deepstate("deepstate-manticore")
|
||||||
|
|
||||||
|
def run_deepstate(self, deepstate):
|
||||||
|
print("You should define an actual test of DeepState here.")
|
||||||
Loading…
x
Reference in New Issue
Block a user