forked from p34709852/monkey
9 lines
178 B
Python
9 lines
178 B
Python
|
from abc import ABCMeta, abstractmethod
|
||
|
|
||
|
|
||
|
class Analyzer(object, metaclass=ABCMeta):
|
||
|
|
||
|
@abstractmethod
|
||
|
def analyze_test_results(self):
|
||
|
raise NotImplementedError()
|