Example #1
0
        public void OneTimeSetup()
        {
            var json      = JsonParsingTests.GetBundleContents();
            var overrides = new List <string>
            {
                "global::Improbable.Gdk.Tests.SomeType;global::UserCode.SerializationExtensions.Type"
            };

            store = new DetailsStore(SchemaBundle.LoadBundle(json), overrides);
        }
Example #2
0
            public static CodegenStub GetCleanInstance()
            {
                var json = JsonParsingTests.GetBundleContents();

                return(new CodegenStub("", new MockFileSystem(), new DetailsStore(SchemaBundle.LoadBundle(json), new List <string>(), new MockFileTree()), false));
            }
Example #3
0
        public void OneTimeSetup()
        {
            var bundle = JsonParsingTests.GetBundleContents();

            store = new DetailsStore(SchemaBundle.FromJson(bundle));
        }