Beispiel #1
0
    public void Matches_Method_Name(string nameToMatch)
    {
        var builder = new RestfulApiMethodBuilder(RestfulApiMethod.List);

        builder.MatchName(nameToMatch);

        builder.IsMatch(CreateActionModel(nameof(MyActionName))).Should().BeTrue();
    }