Ejemplo n.º 1
0
        public void registers_type_when_list()
        {
            var schema = new ARootSchema();
            schema.EnsureLookup();

            ContainsTypeNames(
                schema,
                "DListType");
        }
Ejemplo n.º 2
0
        public void registers_argument_input_objects()
        {
            var schema = new ARootSchema();
            schema.EnsureLookup();

            ContainsTypeNames(
                schema,
                "DInputType");
        }
Ejemplo n.º 3
0
        public void registers_type_when_list()
        {
            var schema = new ARootSchema();

            schema.EnsureLookup();

            ContainsTypeNames(
                schema,
                "DListType");
        }
Ejemplo n.º 4
0
        public void registers_argument_input_objects()
        {
            var schema = new ARootSchema();

            schema.EnsureLookup();

            ContainsTypeNames(
                schema,
                "DInputType");
        }
Ejemplo n.º 5
0
        public void registers_union_types()
        {
            var schema = new ARootSchema();

            schema.EnsureLookup();

            ContainsTypeNames(
                schema,
                "AUnion",
                "WithoutIsTypeOf1Type",
                "WithoutIsTypeOf2Type");
        }
Ejemplo n.º 6
0
        public void recursively_registers_children()
        {
            var schema = new ARootSchema();
            schema.EnsureLookup();

            ContainsTypeNames(
                schema,
                "RootSchemaType",
                "ASchemaType",
                "BSchemaType",
                "CSchemaType",
                "DSchemaType");
        }
Ejemplo n.º 7
0
        public void recursively_registers_children()
        {
            var schema = new ARootSchema();

            schema.EnsureLookup();

            ContainsTypeNames(
                schema,
                "RootSchemaType",
                "ASchemaType",
                "BSchemaType",
                "CSchemaType",
                "DSchemaType");
        }