我最近开始使用NSpec,现在我不确定如何扩展它。
重用规范(it["something"] = () => {};
)的最佳方法是什么?
假设我有一个接口IMyService
和 2 个实现它的类:Service1
和 Service2
。
现在我想编写适用于IMyservice
级别的规范,并针对我的 2 个实现类运行它们。
也许我在这里错过了一些东西,但我可以找到一种简单的方法来做到这一点。
您可以使用抽象类来重用规范。下面是一个示例:
/*
Output:
describe Service1
it should do this
it should also do this
specify something unique to service1
describe Service2
it should do this
it should also do this
specify something unique to service2
*/
abstract class some_shared_spec : nspec
{
public IMyservice service;
void it_should_do_this()
{
}
void it_should_also_do_this()
{
}
}
class describe_Service1 : some_shared_spec
{
void before_each()
{
service = new Service1();
}
void specify_something_unique_to_service1()
{
}
}
class describe_Service2 : some_shared_spec
{
void before_each()
{
service = new Service2();
}
void specify_something_unique_to_service2()
{
}
}