Beispiel #1
0
        public void Test_GraphQLLastArgumentsAttribute_Type_Int()
        {
            var argument = new GraphQLLastArgumentsAttribute("variableName");

            Assert.Equal("Int", argument.ArgumentType);
        }
Beispiel #2
0
        public void Test_GraphQLLastArgumentsAttribute_Name_Last()
        {
            var argument = new GraphQLLastArgumentsAttribute("variableName");

            Assert.Equal("last", argument.ArgumentName);
        }