add base for all tests

This commit is contained in:
Alex Groce 2018-07-18 12:14:09 -07:00
parent 4eaa8e88c1
commit f7013ebad9

14
tests/deepstate_base.py Normal file
View 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.")