public void writeGenericChecked() { string path = tmpFile("write.generic.checked"); SkillFile sf = SkillFile.open(path); reflectiveInit(sf); // write file sf.flush(); // create a name -> type map Dictionary <string, IAccess> types = new Dictionary <string, IAccess>(); foreach (IAccess t in sf.allTypes()) { types[t.Name] = t; } // read file and check skill IDs SkillFile sf2 = SkillFile.open(path, Mode.Read); foreach (IAccess t in sf2.allTypes()) { IEnumerator os = types[t.Name].GetEnumerator(); foreach (SkillObject o in t) { Assert.IsTrue(os.MoveNext(), "to few instances in read state"); Assert.AreEqual(o.SkillID, ((SkillObject)os.Current).SkillID); } Assert.IsFalse(os.MoveNext(), "to many instances in read state"); } File.Delete(path); }
public void writeGeneric() { string path = tmpFile("write.generic"); SkillFile sf = SkillFile.open(path); reflectiveInit(sf); sf.close(); File.Delete(path); }
public void APITest_core_map3_acc_simple() { string path = tmpFile("simple"); SkillFile sf = SkillFile.open(path, Mode.Create, Mode.Write); // create objects map3.T T = (map3.T)sf.Ts().make(); // set fields T.Zref = (System.Collections.Generic.Dictionary <System.String, System.Collections.Generic.Dictionary <L, System.String> >)put(map <string, Dictionary <L, string> >(), "hallo", put(map <L, string>(), (L)null, "welt")); sf.close(); { // read back and assert correctness SkillFile sf2 = SkillFile.open(sf.currentPath(), Mode.Read, Mode.ReadOnly); // check count per Type Assert.AreEqual(1, sf.Ts().staticSize()); // create objects from file map3.T T_2 = (map3.T)sf2.Ts().getByID(T.SkillID); // assert fields Assert.IsTrue(T_2.Zref != null && Enumerable.SequenceEqual(T_2.Zref, put(map <string, Dictionary <L, string> >(), "hallo", put(map <L, string>(), (L)null, "welt")))); } File.Delete(path); }
public SkillFile read(string s) { return(SkillFile.open(basePath + s, Mode.Read, Mode.ReadOnly)); }