namespace BookStore.Features; public static class FakeFeatureNames { public const string GroupName = "FakeFeature.Tests"; // 类型限制调用次数功能名称 public const string ClassLimitFeature = GroupName + ".LimitFeature"; // 方法限制调用次数功能名称 public const string MethodLimitFeature = GroupName + ".MethodLimitFeature"; // 限制调用间隔功能名称 public const string IntervalFeature = GroupName + ".IntervalFeature"; }