mirror of https://github.com/abpframework/abp
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
447 B
14 lines
447 B
namespace Volo.Abp.Features
|
|
{
|
|
public class TestFeatureDefinitionProvider : FeatureDefinitionProvider
|
|
{
|
|
public override void Define(IFeatureDefinitionContext context)
|
|
{
|
|
var group = context.AddGroup("Test Group");
|
|
group.AddFeature("BooleanTestFeature1");
|
|
group.AddFeature("BooleanTestFeature2");
|
|
group.AddFeature("IntegerTestFeature1", defaultValue: "1");
|
|
}
|
|
}
|
|
}
|