add base for all tests
This commit is contained in:
@@ -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.")
|
||||
Reference in New Issue
Block a user