测试一个接口

时间:2015-09-14 12:48:08

标签: python unit-testing

假设我有一个这样定义的接口:

class MyInterface(abc.ABCMeta):

    @abstractmethod
    def my_method(self, *params):
         pass

它的几个实现。

class Implentation1(MyInterface):
     pass

class Implentation2(MyInterface):
     pass

所有这些类必须在同一个类下进行测试。我想知道有任何方法可以指定您希望测试用例使用不同的类运行。我正在使用nosetests和unittest。

0 个答案:

没有答案