public virtual void setup(){
     Console.WriteLine();
     Console.WriteLine("----");
     this.boox = new BooxmlParser();
     this.boog = new BooxmlGenerator();
     
 }
		public void long_boo_bxl_test() {

			var c = File.ReadAllText(@"C:\code\usr\ugmk\eco\data\eco.real.bxl");
			var s = Stopwatch.StartNew();
			XElement x = null;
			for(int i=0;i<30;i++) {
				x = new BooxmlParser().Parse(c);
			}
			Console.WriteLine(x.ToString().Length);
			File.WriteAllText(@"c:\tmp\usual_bxl.xml",x.ToString());
		}