static void Main() {
    {
      // Anonymous enums
      int i = enum_thorough_simple.AnonEnum1;
      if (enum_thorough_simple.ReallyAnInteger != 200) throw new Exception("Test Anon 1 failed");
      i += enum_thorough_simple.AnonSpaceEnum1;
      i += AnonStruct.AnonStructEnum1;
    }
    {
      int red = enum_thorough_simple.red;
      enum_thorough_simple.colourTest1(red);
      enum_thorough_simple.colourTest2(red);
      enum_thorough_simple.colourTest3(red);
      enum_thorough_simple.colourTest4(red);
      enum_thorough_simple.myColour = red;
    }
    {
      SpeedClass s = new SpeedClass();
      int speed = SpeedClass.slow;
      if (s.speedTest1(speed) != speed) throw new Exception("speedTest 1 failed");
      if (s.speedTest2(speed) != speed) throw new Exception("speedTest 2 failed");
      if (s.speedTest3(speed) != speed) throw new Exception("speedTest 3 failed");
      if (s.speedTest4(speed) != speed) throw new Exception("speedTest 4 failed");
      if (s.speedTest5(speed) != speed) throw new Exception("speedTest 5 failed");
      if (s.speedTest6(speed) != speed) throw new Exception("speedTest 6 failed");
      if (s.speedTest7(speed) != speed) throw new Exception("speedTest 7 failed");
      if (s.speedTest8(speed) != speed) throw new Exception("speedTest 8 failed");

      if (enum_thorough_simple.speedTest1(speed) != speed) throw new Exception("speedTest Global 1 failed");
      if (enum_thorough_simple.speedTest2(speed) != speed) throw new Exception("speedTest Global 2 failed");
      if (enum_thorough_simple.speedTest3(speed) != speed) throw new Exception("speedTest Global 3 failed");
      if (enum_thorough_simple.speedTest4(speed) != speed) throw new Exception("speedTest Global 4 failed");
      if (enum_thorough_simple.speedTest5(speed) != speed) throw new Exception("speedTest Global 5 failed");
    }
    {
      SpeedClass s = new SpeedClass();
      int slow = SpeedClass.slow;
      int lightning = SpeedClass.lightning;

      if (s.mySpeedtd1 != slow) throw new Exception("mySpeedtd1 1 failed");
      if (s.mySpeedtd1 != 10) throw new Exception("mySpeedtd1 2 failed");

      s.mySpeedtd1 = lightning;
      if (s.mySpeedtd1 != lightning) throw new Exception("mySpeedtd1 3 failed");
      if (s.mySpeedtd1 != 31) throw new Exception("mySpeedtd1 4 failed");
    }
    {
      if (enum_thorough_simple.namedanonTest1(enum_thorough_simple.NamedAnon2) != enum_thorough_simple.NamedAnon2) throw new Exception("namedanonTest 1 failed");
    }
    {
      int val = enum_thorough_simple.TwoNames2;
      if (enum_thorough_simple.twonamesTest1(val) != val) throw new Exception("twonamesTest 1 failed");
      if (enum_thorough_simple.twonamesTest2(val) != val) throw new Exception("twonamesTest 2 failed");
      if (enum_thorough_simple.twonamesTest3(val) != val) throw new Exception("twonamesTest 3 failed");
    }
    {
      TwoNamesStruct t = new TwoNamesStruct();
      int val = TwoNamesStruct.TwoNamesStruct1;
      if (t.twonamesTest1(val) != val) throw new Exception("twonamesTest 1 failed");
      if (t.twonamesTest2(val) != val) throw new Exception("twonamesTest 2 failed");
      if (t.twonamesTest3(val) != val) throw new Exception("twonamesTest 3 failed");
    }
    {
      int val = enum_thorough_simple.NamedAnonSpace2;
      if (enum_thorough_simple.namedanonspaceTest1(val) != val) throw new Exception("namedanonspaceTest 1 failed");
      if (enum_thorough_simple.namedanonspaceTest2(val) != val) throw new Exception("namedanonspaceTest 2 failed");
      if (enum_thorough_simple.namedanonspaceTest3(val) != val) throw new Exception("namedanonspaceTest 3 failed");
      if (enum_thorough_simple.namedanonspaceTest4(val) != val) throw new Exception("namedanonspaceTest 4 failed");
    }
    {
      TemplateClassInt t = new TemplateClassInt();
      int galileo = TemplateClassInt.galileo;

      if (t.scientistsTest1(galileo) != galileo) throw new Exception("scientistsTest 1 failed");
      if (t.scientistsTest2(galileo) != galileo) throw new Exception("scientistsTest 2 failed");
      if (t.scientistsTest3(galileo) != galileo) throw new Exception("scientistsTest 3 failed");
      if (t.scientistsTest4(galileo) != galileo) throw new Exception("scientistsTest 4 failed");
      if (t.scientistsTest5(galileo) != galileo) throw new Exception("scientistsTest 5 failed");
      if (t.scientistsTest6(galileo) != galileo) throw new Exception("scientistsTest 6 failed");
      if (t.scientistsTest7(galileo) != galileo) throw new Exception("scientistsTest 7 failed");
      if (t.scientistsTest8(galileo) != galileo) throw new Exception("scientistsTest 8 failed");
      if (t.scientistsTest9(galileo) != galileo) throw new Exception("scientistsTest 9 failed");
//      if (t.scientistsTestA(galileo) != galileo) throw new Exception("scientistsTest A failed");
      if (t.scientistsTestB(galileo) != galileo) throw new Exception("scientistsTest B failed");
//      if (t.scientistsTestC(galileo) != galileo) throw new Exception("scientistsTest C failed");
      if (t.scientistsTestD(galileo) != galileo) throw new Exception("scientistsTest D failed");
      if (t.scientistsTestE(galileo) != galileo) throw new Exception("scientistsTest E failed");
      if (t.scientistsTestF(galileo) != galileo) throw new Exception("scientistsTest F failed");
      if (t.scientistsTestG(galileo) != galileo) throw new Exception("scientistsTest G failed");
      if (t.scientistsTestH(galileo) != galileo) throw new Exception("scientistsTest H failed");
      if (t.scientistsTestI(galileo) != galileo) throw new Exception("scientistsTest I failed");
      if (t.scientistsTestJ(galileo) != galileo) throw new Exception("scientistsTest J failed");

      if (enum_thorough_simple.scientistsTest1(galileo) != galileo) throw new Exception("scientistsTest Global 1 failed");
      if (enum_thorough_simple.scientistsTest2(galileo) != galileo) throw new Exception("scientistsTest Global 2 failed");
      if (enum_thorough_simple.scientistsTest3(galileo) != galileo) throw new Exception("scientistsTest Global 3 failed");
      if (enum_thorough_simple.scientistsTest4(galileo) != galileo) throw new Exception("scientistsTest Global 4 failed");
      if (enum_thorough_simple.scientistsTest5(galileo) != galileo) throw new Exception("scientistsTest Global 5 failed");
      if (enum_thorough_simple.scientistsTest6(galileo) != galileo) throw new Exception("scientistsTest Global 6 failed");
      if (enum_thorough_simple.scientistsTest7(galileo) != galileo) throw new Exception("scientistsTest Global 7 failed");
      if (enum_thorough_simple.scientistsTest8(galileo) != galileo) throw new Exception("scientistsTest Global 8 failed");
    }
    {
      TClassInt t = new TClassInt();
      int bell = TClassInt.bell;
      int galileo = TemplateClassInt.galileo;
      if (t.scientistsNameTest1(bell) != bell) throw new Exception("scientistsNameTest 1 failed");
      if (t.scientistsNameTest2(bell) != bell) throw new Exception("scientistsNameTest 2 failed");
      if (t.scientistsNameTest3(bell) != bell) throw new Exception("scientistsNameTest 3 failed");
      if (t.scientistsNameTest4(bell) != bell) throw new Exception("scientistsNameTest 4 failed");
      if (t.scientistsNameTest5(bell) != bell) throw new Exception("scientistsNameTest 5 failed");
      if (t.scientistsNameTest6(bell) != bell) throw new Exception("scientistsNameTest 6 failed");
      if (t.scientistsNameTest7(bell) != bell) throw new Exception("scientistsNameTest 7 failed");
      if (t.scientistsNameTest8(bell) != bell) throw new Exception("scientistsNameTest 8 failed");
      if (t.scientistsNameTest9(bell) != bell) throw new Exception("scientistsNameTest 9 failed");
//      if (t.scientistsNameTestA(bell) != bell) throw new Exception("scientistsNameTest A failed");
      if (t.scientistsNameTestB(bell) != bell) throw new Exception("scientistsNameTest B failed");
//      if (t.scientistsNameTestC(bell) != bell) throw new Exception("scientistsNameTest C failed");
      if (t.scientistsNameTestD(bell) != bell) throw new Exception("scientistsNameTest D failed");
      if (t.scientistsNameTestE(bell) != bell) throw new Exception("scientistsNameTest E failed");
      if (t.scientistsNameTestF(bell) != bell) throw new Exception("scientistsNameTest F failed");
      if (t.scientistsNameTestG(bell) != bell) throw new Exception("scientistsNameTest G failed");
      if (t.scientistsNameTestH(bell) != bell) throw new Exception("scientistsNameTest H failed");
      if (t.scientistsNameTestI(bell) != bell) throw new Exception("scientistsNameTest I failed");

      if (t.scientistsNameSpaceTest1(bell) != bell) throw new Exception("scientistsNameSpaceTest 1 failed");
      if (t.scientistsNameSpaceTest2(bell) != bell) throw new Exception("scientistsNameSpaceTest 2 failed");
      if (t.scientistsNameSpaceTest3(bell) != bell) throw new Exception("scientistsNameSpaceTest 3 failed");
      if (t.scientistsNameSpaceTest4(bell) != bell) throw new Exception("scientistsNameSpaceTest 4 failed");
      if (t.scientistsNameSpaceTest5(bell) != bell) throw new Exception("scientistsNameSpaceTest 5 failed");
      if (t.scientistsNameSpaceTest6(bell) != bell) throw new Exception("scientistsNameSpaceTest 6 failed");
      if (t.scientistsNameSpaceTest7(bell) != bell) throw new Exception("scientistsNameSpaceTest 7 failed");

      if (t.scientistsOtherTest1(galileo) != galileo) throw new Exception("scientistsOtherTest 1 failed");
      if (t.scientistsOtherTest2(galileo) != galileo) throw new Exception("scientistsOtherTest 2 failed");
      if (t.scientistsOtherTest3(galileo) != galileo) throw new Exception("scientistsOtherTest 3 failed");
      if (t.scientistsOtherTest4(galileo) != galileo) throw new Exception("scientistsOtherTest 4 failed");
      if (t.scientistsOtherTest5(galileo) != galileo) throw new Exception("scientistsOtherTest 5 failed");
      if (t.scientistsOtherTest6(galileo) != galileo) throw new Exception("scientistsOtherTest 6 failed");
      if (t.scientistsOtherTest7(galileo) != galileo) throw new Exception("scientistsOtherTest 7 failed");

      if (enum_thorough_simple.scientistsNameTest1(bell) != bell) throw new Exception("scientistsNameTest Global 1 failed");
      if (enum_thorough_simple.scientistsNameTest2(bell) != bell) throw new Exception("scientistsNameTest Global 2 failed");
      if (enum_thorough_simple.scientistsNameTest3(bell) != bell) throw new Exception("scientistsNameTest Global 3 failed");
      if (enum_thorough_simple.scientistsNameTest4(bell) != bell) throw new Exception("scientistsNameTest Global 4 failed");
      if (enum_thorough_simple.scientistsNameTest5(bell) != bell) throw new Exception("scientistsNameTest Global 5 failed");
      if (enum_thorough_simple.scientistsNameTest6(bell) != bell) throw new Exception("scientistsNameTest Global 6 failed");
      if (enum_thorough_simple.scientistsNameTest7(bell) != bell) throw new Exception("scientistsNameTest Global 7 failed");

      if (enum_thorough_simple.scientistsNameSpaceTest1(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 1 failed");
      if (enum_thorough_simple.scientistsNameSpaceTest2(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 2 failed");
      if (enum_thorough_simple.scientistsNameSpaceTest3(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 3 failed");
      if (enum_thorough_simple.scientistsNameSpaceTest4(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 4 failed");
      if (enum_thorough_simple.scientistsNameSpaceTest5(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 5 failed");
      if (enum_thorough_simple.scientistsNameSpaceTest6(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 6 failed");
      if (enum_thorough_simple.scientistsNameSpaceTest7(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 7 failed");

      if (enum_thorough_simple.scientistsNameSpaceTest8(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 8 failed");
      if (enum_thorough_simple.scientistsNameSpaceTest9(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 9 failed");
      if (enum_thorough_simple.scientistsNameSpaceTestA(bell) != bell) throw new Exception("scientistsNameSpaceTest Global A failed");
      if (enum_thorough_simple.scientistsNameSpaceTestB(bell) != bell) throw new Exception("scientistsNameSpaceTest Global B failed");
      if (enum_thorough_simple.scientistsNameSpaceTestC(bell) != bell) throw new Exception("scientistsNameSpaceTest Global C failed");
      if (enum_thorough_simple.scientistsNameSpaceTestD(bell) != bell) throw new Exception("scientistsNameSpaceTest Global D failed");
      if (enum_thorough_simple.scientistsNameSpaceTestE(bell) != bell) throw new Exception("scientistsNameSpaceTest Global E failed");

      if (enum_thorough_simple.scientistsNameSpaceTestF(bell) != bell) throw new Exception("scientistsNameSpaceTest Global F failed");
      if (enum_thorough_simple.scientistsNameSpaceTestG(bell) != bell) throw new Exception("scientistsNameSpaceTest Global G failed");
      if (enum_thorough_simple.scientistsNameSpaceTestH(bell) != bell) throw new Exception("scientistsNameSpaceTest Global H failed");
      if (enum_thorough_simple.scientistsNameSpaceTestI(bell) != bell) throw new Exception("scientistsNameSpaceTest Global I failed");
      if (enum_thorough_simple.scientistsNameSpaceTestJ(bell) != bell) throw new Exception("scientistsNameSpaceTest Global J failed");
      if (enum_thorough_simple.scientistsNameSpaceTestK(bell) != bell) throw new Exception("scientistsNameSpaceTest Global K failed");
      if (enum_thorough_simple.scientistsNameSpaceTestL(bell) != bell) throw new Exception("scientistsNameSpaceTest Global L failed");
    }
    {
      int val = enum_thorough_simple.argh;
      if (enum_thorough_simple.renameTest1(val) != val) throw new Exception("renameTest Global 1 failed");
      if (enum_thorough_simple.renameTest2(val) != val) throw new Exception("renameTest Global 2 failed");
    }
    {
      NewNameStruct n = new NewNameStruct();
      if (n.renameTest1(NewNameStruct.bang) != NewNameStruct.bang) throw new Exception("renameTest 1 failed");
      if (n.renameTest2(NewNameStruct.bang) != NewNameStruct.bang) throw new Exception("renameTest 2 failed");
      if (n.renameTest3(NewNameStruct.simple1) != NewNameStruct.simple1) throw new Exception("renameTest 3 failed");
      if (n.renameTest4(NewNameStruct.doublename1) != NewNameStruct.doublename1) throw new Exception("renameTest 4 failed");
      if (n.renameTest5(NewNameStruct.doublename1) != NewNameStruct.doublename1) throw new Exception("renameTest 5 failed");
      if (n.renameTest6(NewNameStruct.singlename1) != NewNameStruct.singlename1) throw new Exception("renameTest 6 failed");
    }
    {
      if (enum_thorough_simple.renameTest3(NewNameStruct.bang) != NewNameStruct.bang) throw new Exception("renameTest Global 3 failed");
      if (enum_thorough_simple.renameTest4(NewNameStruct.simple1) != NewNameStruct.simple1) throw new Exception("renameTest Global 4 failed");
      if (enum_thorough_simple.renameTest5(NewNameStruct.doublename1) != NewNameStruct.doublename1) throw new Exception("renameTest Global 5 failed");
      if (enum_thorough_simple.renameTest6(NewNameStruct.doublename1) != NewNameStruct.doublename1) throw new Exception("renameTest Global 6 failed");
      if (enum_thorough_simple.renameTest7(NewNameStruct.singlename1) != NewNameStruct.singlename1) throw new Exception("renameTest Global 7 failed");
    }
    {
      TreesClass t = new TreesClass();
      int pine = TreesClass.pine;

      if (t.treesTest1(pine) != pine) throw new Exception("treesTest 1 failed");
      if (t.treesTest2(pine) != pine) throw new Exception("treesTest 2 failed");
      if (t.treesTest3(pine) != pine) throw new Exception("treesTest 3 failed");
      if (t.treesTest4(pine) != pine) throw new Exception("treesTest 4 failed");
      if (t.treesTest5(pine) != pine) throw new Exception("treesTest 5 failed");
      if (t.treesTest6(pine) != pine) throw new Exception("treesTest 6 failed");
      if (t.treesTest7(pine) != pine) throw new Exception("treesTest 7 failed");
      if (t.treesTest8(pine) != pine) throw new Exception("treesTest 8 failed");
      if (t.treesTest9(pine) != pine) throw new Exception("treesTest 9 failed");
      if (t.treesTestA(pine) != pine) throw new Exception("treesTest A failed");
      if (t.treesTestB(pine) != pine) throw new Exception("treesTest B failed");
      if (t.treesTestC(pine) != pine) throw new Exception("treesTest C failed");
      if (t.treesTestD(pine) != pine) throw new Exception("treesTest D failed");
      if (t.treesTestE(pine) != pine) throw new Exception("treesTest E failed");
      if (t.treesTestF(pine) != pine) throw new Exception("treesTest F failed");
      if (t.treesTestG(pine) != pine) throw new Exception("treesTest G failed");
      if (t.treesTestH(pine) != pine) throw new Exception("treesTest H failed");
      if (t.treesTestI(pine) != pine) throw new Exception("treesTest I failed");
      if (t.treesTestJ(pine) != pine) throw new Exception("treesTest J failed");
      if (t.treesTestK(pine) != pine) throw new Exception("treesTest K failed");
      if (t.treesTestL(pine) != pine) throw new Exception("treesTest L failed");
      if (t.treesTestM(pine) != pine) throw new Exception("treesTest M failed");
      if (t.treesTestN(pine) != pine) throw new Exception("treesTest N failed");
      if (t.treesTestO(pine) != pine) throw new Exception("treesTest O failed");

      if (enum_thorough_simple.treesTest1(pine) != pine) throw new Exception("treesTest Global 1 failed");
      if (enum_thorough_simple.treesTest2(pine) != pine) throw new Exception("treesTest Global 2 failed");
      if (enum_thorough_simple.treesTest3(pine) != pine) throw new Exception("treesTest Global 3 failed");
      if (enum_thorough_simple.treesTest4(pine) != pine) throw new Exception("treesTest Global 4 failed");
      if (enum_thorough_simple.treesTest5(pine) != pine) throw new Exception("treesTest Global 5 failed");
      if (enum_thorough_simple.treesTest6(pine) != pine) throw new Exception("treesTest Global 6 failed");
      if (enum_thorough_simple.treesTest7(pine) != pine) throw new Exception("treesTest Global 7 failed");
      if (enum_thorough_simple.treesTest8(pine) != pine) throw new Exception("treesTest Global 8 failed");
      if (enum_thorough_simple.treesTest9(pine) != pine) throw new Exception("treesTest Global 9 failed");
      if (enum_thorough_simple.treesTestA(pine) != pine) throw new Exception("treesTest Global A failed");
      if (enum_thorough_simple.treesTestB(pine) != pine) throw new Exception("treesTest Global B failed");
      if (enum_thorough_simple.treesTestC(pine) != pine) throw new Exception("treesTest Global C failed");
      if (enum_thorough_simple.treesTestD(pine) != pine) throw new Exception("treesTest Global D failed");
      if (enum_thorough_simple.treesTestE(pine) != pine) throw new Exception("treesTest Global E failed");
      if (enum_thorough_simple.treesTestF(pine) != pine) throw new Exception("treesTest Global F failed");
      if (enum_thorough_simple.treesTestG(pine) != pine) throw new Exception("treesTest Global G failed");
      if (enum_thorough_simple.treesTestH(pine) != pine) throw new Exception("treesTest Global H failed");
      if (enum_thorough_simple.treesTestI(pine) != pine) throw new Exception("treesTest Global I failed");
      if (enum_thorough_simple.treesTestJ(pine) != pine) throw new Exception("treesTest Global J failed");
      if (enum_thorough_simple.treesTestK(pine) != pine) throw new Exception("treesTest Global K failed");
      if (enum_thorough_simple.treesTestL(pine) != pine) throw new Exception("treesTest Global L failed");
      if (enum_thorough_simple.treesTestM(pine) != pine) throw new Exception("treesTest Global M failed");
//      if (enum_thorough_simple.treesTestN(pine) != pine) throw new Exception("treesTest Global N failed");
      if (enum_thorough_simple.treesTestO(pine) != pine) throw new Exception("treesTest Global O failed");
      if (enum_thorough_simple.treesTestP(pine) != pine) throw new Exception("treesTest Global P failed");
      if (enum_thorough_simple.treesTestQ(pine) != pine) throw new Exception("treesTest Global Q failed");
      if (enum_thorough_simple.treesTestR(pine) != pine) throw new Exception("treesTest Global R failed");
    }
    {
      HairStruct h = new HairStruct();
      int ginger = HairStruct.ginger;

      if (h.hairTest1(ginger) != ginger) throw new Exception("hairTest 1 failed");
      if (h.hairTest2(ginger) != ginger) throw new Exception("hairTest 2 failed");
      if (h.hairTest3(ginger) != ginger) throw new Exception("hairTest 3 failed");
      if (h.hairTest4(ginger) != ginger) throw new Exception("hairTest 4 failed");
      if (h.hairTest5(ginger) != ginger) throw new Exception("hairTest 5 failed");
      if (h.hairTest6(ginger) != ginger) throw new Exception("hairTest 6 failed");
      if (h.hairTest7(ginger) != ginger) throw new Exception("hairTest 7 failed");
      if (h.hairTest8(ginger) != ginger) throw new Exception("hairTest 8 failed");
      if (h.hairTest9(ginger) != ginger) throw new Exception("hairTest 9 failed");
      if (h.hairTestA(ginger) != ginger) throw new Exception("hairTest A failed");
      if (h.hairTestB(ginger) != ginger) throw new Exception("hairTest B failed");

      int red = enum_thorough_simple.red;
      if (h.colourTest1(red) != red) throw new Exception("colourTest HairStruct 1 failed");
      if (h.colourTest2(red) != red) throw new Exception("colourTest HairStruct 2 failed");
      if (h.namedanonTest1(enum_thorough_simple.NamedAnon2) != enum_thorough_simple.NamedAnon2) throw new Exception("namedanonTest HairStruct 1 failed");
      if (h.namedanonspaceTest1(enum_thorough_simple.NamedAnonSpace2) != enum_thorough_simple.NamedAnonSpace2) throw new Exception("namedanonspaceTest HairStruct 1 failed");

      int fir = TreesClass.fir;
      if (h.treesGlobalTest1(fir) != fir) throw new Exception("treesGlobalTest1 HairStruct 1 failed");
      if (h.treesGlobalTest2(fir) != fir) throw new Exception("treesGlobalTest1 HairStruct 2 failed");
      if (h.treesGlobalTest3(fir) != fir) throw new Exception("treesGlobalTest1 HairStruct 3 failed");
      if (h.treesGlobalTest4(fir) != fir) throw new Exception("treesGlobalTest1 HairStruct 4 failed");
    }
    {
      int blonde = HairStruct.blonde;
      if (enum_thorough_simple.hairTest1(blonde) != blonde) throw new Exception("hairTest Global 1 failed");
      if (enum_thorough_simple.hairTest2(blonde) != blonde) throw new Exception("hairTest Global 2 failed");
      if (enum_thorough_simple.hairTest3(blonde) != blonde) throw new Exception("hairTest Global 3 failed");
      if (enum_thorough_simple.hairTest4(blonde) != blonde) throw new Exception("hairTest Global 4 failed");
      if (enum_thorough_simple.hairTest5(blonde) != blonde) throw new Exception("hairTest Global 5 failed");
      if (enum_thorough_simple.hairTest6(blonde) != blonde) throw new Exception("hairTest Global 6 failed");
      if (enum_thorough_simple.hairTest7(blonde) != blonde) throw new Exception("hairTest Global 7 failed");
      if (enum_thorough_simple.hairTest8(blonde) != blonde) throw new Exception("hairTest Global 8 failed");
      if (enum_thorough_simple.hairTest9(blonde) != blonde) throw new Exception("hairTest Global 9 failed");
      if (enum_thorough_simple.hairTestA(blonde) != blonde) throw new Exception("hairTest Global A failed");
      if (enum_thorough_simple.hairTestB(blonde) != blonde) throw new Exception("hairTest Global B failed");
      if (enum_thorough_simple.hairTestC(blonde) != blonde) throw new Exception("hairTest Global C failed");

      if (enum_thorough_simple.hairTestA1(blonde) != blonde) throw new Exception("hairTest Global A1 failed");
      if (enum_thorough_simple.hairTestA2(blonde) != blonde) throw new Exception("hairTest Global A2 failed");
      if (enum_thorough_simple.hairTestA3(blonde) != blonde) throw new Exception("hairTest Global A3 failed");
      if (enum_thorough_simple.hairTestA4(blonde) != blonde) throw new Exception("hairTest Global A4 failed");
      if (enum_thorough_simple.hairTestA5(blonde) != blonde) throw new Exception("hairTest Global A5 failed");
      if (enum_thorough_simple.hairTestA6(blonde) != blonde) throw new Exception("hairTest Global A6 failed");
      if (enum_thorough_simple.hairTestA7(blonde) != blonde) throw new Exception("hairTest Global A7 failed");
      if (enum_thorough_simple.hairTestA8(blonde) != blonde) throw new Exception("hairTest Global A8 failed");
      if (enum_thorough_simple.hairTestA9(blonde) != blonde) throw new Exception("hairTest Global A9 failed");
      if (enum_thorough_simple.hairTestAA(blonde) != blonde) throw new Exception("hairTest Global AA failed");
      if (enum_thorough_simple.hairTestAB(blonde) != blonde) throw new Exception("hairTest Global AB failed");
      if (enum_thorough_simple.hairTestAC(blonde) != blonde) throw new Exception("hairTest Global AC failed");

      if (enum_thorough_simple.hairTestB1(blonde) != blonde) throw new Exception("hairTest Global B1 failed");
      if (enum_thorough_simple.hairTestB2(blonde) != blonde) throw new Exception("hairTest Global B2 failed");
      if (enum_thorough_simple.hairTestB3(blonde) != blonde) throw new Exception("hairTest Global B3 failed");
      if (enum_thorough_simple.hairTestB4(blonde) != blonde) throw new Exception("hairTest Global B4 failed");
      if (enum_thorough_simple.hairTestB5(blonde) != blonde) throw new Exception("hairTest Global B5 failed");
      if (enum_thorough_simple.hairTestB6(blonde) != blonde) throw new Exception("hairTest Global B6 failed");
      if (enum_thorough_simple.hairTestB7(blonde) != blonde) throw new Exception("hairTest Global B7 failed");
      if (enum_thorough_simple.hairTestB8(blonde) != blonde) throw new Exception("hairTest Global B8 failed");
      if (enum_thorough_simple.hairTestB9(blonde) != blonde) throw new Exception("hairTest Global B9 failed");
      if (enum_thorough_simple.hairTestBA(blonde) != blonde) throw new Exception("hairTest Global BA failed");
      if (enum_thorough_simple.hairTestBB(blonde) != blonde) throw new Exception("hairTest Global BB failed");
      if (enum_thorough_simple.hairTestBC(blonde) != blonde) throw new Exception("hairTest Global BC failed");

      if (enum_thorough_simple.hairTestC1(blonde) != blonde) throw new Exception("hairTest Global C1 failed");
      if (enum_thorough_simple.hairTestC2(blonde) != blonde) throw new Exception("hairTest Global C2 failed");
      if (enum_thorough_simple.hairTestC3(blonde) != blonde) throw new Exception("hairTest Global C3 failed");
      if (enum_thorough_simple.hairTestC4(blonde) != blonde) throw new Exception("hairTest Global C4 failed");
      if (enum_thorough_simple.hairTestC5(blonde) != blonde) throw new Exception("hairTest Global C5 failed");
      if (enum_thorough_simple.hairTestC6(blonde) != blonde) throw new Exception("hairTest Global C6 failed");
      if (enum_thorough_simple.hairTestC7(blonde) != blonde) throw new Exception("hairTest Global C7 failed");
      if (enum_thorough_simple.hairTestC8(blonde) != blonde) throw new Exception("hairTest Global C8 failed");
      if (enum_thorough_simple.hairTestC9(blonde) != blonde) throw new Exception("hairTest Global C9 failed");
      if (enum_thorough_simple.hairTestCA(blonde) != blonde) throw new Exception("hairTest Global CA failed");
      if (enum_thorough_simple.hairTestCB(blonde) != blonde) throw new Exception("hairTest Global CB failed");
      if (enum_thorough_simple.hairTestCC(blonde) != blonde) throw new Exception("hairTest Global CC failed");
    }
    {
      FirStruct f = new FirStruct();
      int blonde = HairStruct.blonde;

      if (f.hairTestFir1(blonde) != blonde) throw new Exception("hairTestFir 1 failed");
      if (f.hairTestFir2(blonde) != blonde) throw new Exception("hairTestFir 2 failed");
      if (f.hairTestFir3(blonde) != blonde) throw new Exception("hairTestFir 3 failed");
      if (f.hairTestFir4(blonde) != blonde) throw new Exception("hairTestFir 4 failed");
      if (f.hairTestFir5(blonde) != blonde) throw new Exception("hairTestFir 5 failed");
      if (f.hairTestFir6(blonde) != blonde) throw new Exception("hairTestFir 6 failed");
      if (f.hairTestFir7(blonde) != blonde) throw new Exception("hairTestFir 7 failed");
      if (f.hairTestFir8(blonde) != blonde) throw new Exception("hairTestFir 8 failed");
      if (f.hairTestFir9(blonde) != blonde) throw new Exception("hairTestFir 9 failed");
      if (f.hairTestFirA(blonde) != blonde) throw new Exception("hairTestFir A failed");
    }
    {
      enum_thorough_simple.GlobalInstance = enum_thorough_simple.globalinstance2;
      if (enum_thorough_simple.GlobalInstance != enum_thorough_simple.globalinstance2) throw new Exception("GlobalInstance 1 failed");

      Instances i = new Instances();
      i.MemberInstance = Instances.memberinstance3;
      if (i.MemberInstance != Instances.memberinstance3) throw new Exception("MemberInstance 1 failed");
    }
    // ignore enum item tests start
    {
      if (enum_thorough_simple.ignoreATest(IgnoreTest.ignoreA_zero) != 0) throw new Exception("ignoreATest 0 failed");
      if (enum_thorough_simple.ignoreATest(IgnoreTest.ignoreA_three) != 3) throw new Exception("ignoreATest 3 failed");
      if (enum_thorough_simple.ignoreATest(IgnoreTest.ignoreA_ten) != 10) throw new Exception("ignoreATest 10 failed");
      if (enum_thorough_simple.ignoreATest(IgnoreTest.ignoreA_eleven) != 11) throw new Exception("ignoreATest 11 failed");
      if (enum_thorough_simple.ignoreATest(IgnoreTest.ignoreA_thirteen) != 13) throw new Exception("ignoreATest 13 failed");
      if (enum_thorough_simple.ignoreATest(IgnoreTest.ignoreA_fourteen) != 14) throw new Exception("ignoreATest 14 failed");
      if (enum_thorough_simple.ignoreATest(IgnoreTest.ignoreA_twenty) != 20) throw new Exception("ignoreATest 20 failed");
      if (enum_thorough_simple.ignoreATest(IgnoreTest.ignoreA_thirty) != 30) throw new Exception("ignoreATest 30 failed");
      if (enum_thorough_simple.ignoreATest(IgnoreTest.ignoreA_thirty_two) != 32) throw new Exception("ignoreATest 32 failed");
      if (enum_thorough_simple.ignoreATest(IgnoreTest.ignoreA_thirty_three) != 33) throw new Exception("ignoreATest 33 failed");
    }
    {
      if (enum_thorough_simple.ignoreBTest(IgnoreTest.ignoreB_eleven) != 11) throw new Exception("ignoreBTest 11 failed");
      if (enum_thorough_simple.ignoreBTest(IgnoreTest.ignoreB_twelve) != 12) throw new Exception("ignoreBTest 12 failed");
      if (enum_thorough_simple.ignoreBTest(IgnoreTest.ignoreB_thirty_one) != 31) throw new Exception("ignoreBTest 31 failed");
      if (enum_thorough_simple.ignoreBTest(IgnoreTest.ignoreB_thirty_two) != 32) throw new Exception("ignoreBTest 32 failed");
      if (enum_thorough_simple.ignoreBTest(IgnoreTest.ignoreB_forty_one) != 41) throw new Exception("ignoreBTest 41 failed");
      if (enum_thorough_simple.ignoreBTest(IgnoreTest.ignoreB_forty_two) != 42) throw new Exception("ignoreBTest 42 failed");
    }
    {
      if (enum_thorough_simple.ignoreCTest(IgnoreTest.ignoreC_ten) != 10) throw new Exception("ignoreCTest 10 failed");
      if (enum_thorough_simple.ignoreCTest(IgnoreTest.ignoreC_twelve) != 12) throw new Exception("ignoreCTest 12 failed");
      if (enum_thorough_simple.ignoreCTest(IgnoreTest.ignoreC_thirty) != 30) throw new Exception("ignoreCTest 30 failed");
      if (enum_thorough_simple.ignoreCTest(IgnoreTest.ignoreC_thirty_two) != 32) throw new Exception("ignoreCTest 32 failed");
      if (enum_thorough_simple.ignoreCTest(IgnoreTest.ignoreC_forty) != 40) throw new Exception("ignoreCTest 40 failed");
      if (enum_thorough_simple.ignoreCTest(IgnoreTest.ignoreC_forty_two) != 42) throw new Exception("ignoreCTest 42 failed");
    }
    {
      if (enum_thorough_simple.ignoreDTest(IgnoreTest.ignoreD_twenty_one) != 21) throw new Exception("ignoreDTest 21 failed");
      if (enum_thorough_simple.ignoreDTest(IgnoreTest.ignoreD_twenty_two) != 22) throw new Exception("ignoreDTest 22 failed");
    }
    {
      if (enum_thorough_simple.ignoreETest(IgnoreTest.ignoreE_zero) != 0) throw new Exception("ignoreETest 0 failed");
      if (enum_thorough_simple.ignoreETest(IgnoreTest.ignoreE_twenty_one) != 21) throw new Exception("ignoreETest 21 failed");
      if (enum_thorough_simple.ignoreETest(IgnoreTest.ignoreE_twenty_two) != 22) throw new Exception("ignoreETest 22 failed");
    }
    // ignore enum item tests end
    {
      if (enum_thorough_simple.repeatTest(enum_thorough_simple.one) != 1) throw new Exception("repeatTest 1 failed");
      if (enum_thorough_simple.repeatTest(enum_thorough_simple.initial) != 1) throw new Exception("repeatTest 2 failed");
      if (enum_thorough_simple.repeatTest(enum_thorough_simple.two) != 2) throw new Exception("repeatTest 3 failed");
      if (enum_thorough_simple.repeatTest(enum_thorough_simple.three) != 3) throw new Exception("repeatTest 4 failed");
      if (enum_thorough_simple.repeatTest(enum_thorough_simple.llast) != 3) throw new Exception("repeatTest 5 failed");
      if (enum_thorough_simple.repeatTest(enum_thorough_simple.end) != 3) throw new Exception("repeatTest 6 failed");
    }
    // different types
    {
      if (enum_thorough_simple.differentTypesTest(enum_thorough_simple.typeint) != 10) throw new Exception("differentTypes 1 failed");
      if (enum_thorough_simple.differentTypesTest(enum_thorough_simple.typeboolfalse) != 0) throw new Exception("differentTypes 2 failed");
      if (enum_thorough_simple.differentTypesTest(enum_thorough_simple.typebooltrue) != 1) throw new Exception("differentTypes 3 failed");
      if (enum_thorough_simple.differentTypesTest(enum_thorough_simple.typebooltwo) != 2) throw new Exception("differentTypes 4 failed");
      if (enum_thorough_simple.differentTypesTest(enum_thorough_simple.typechar) != 'C') throw new Exception("differentTypes 5 failed");
      if (enum_thorough_simple.differentTypesTest(enum_thorough_simple.typedefaultint) != 'D') throw new Exception("differentTypes 6 failed");

      int global_enum = enum_thorough_simple.global_typeint;
      if (enum_thorough_simple.globalDifferentTypesTest(global_enum) != 10) throw new Exception("global differentTypes 1 failed");
      global_enum = enum_thorough_simple.global_typeboolfalse;
      if (enum_thorough_simple.globalDifferentTypesTest(global_enum) != 0) throw new Exception("global differentTypes 2 failed");
      global_enum = enum_thorough_simple.global_typebooltrue;
      if (enum_thorough_simple.globalDifferentTypesTest(global_enum) != 1) throw new Exception("global differentTypes 3 failed");
      global_enum = enum_thorough_simple.global_typebooltwo;
      if (enum_thorough_simple.globalDifferentTypesTest(global_enum) != 2) throw new Exception("global differentTypes 4 failed");
      global_enum = enum_thorough_simple.global_typechar;
      if (enum_thorough_simple.globalDifferentTypesTest(global_enum) != 'C') throw new Exception("global differentTypes 5 failed");
      global_enum = enum_thorough_simple.global_typedefaultint;
      if (enum_thorough_simple.globalDifferentTypesTest(global_enum) != 'D') throw new Exception("global differentTypes 6 failed");
    }
  }
    static void Main()
    {
        {
            // Anonymous enums
            int i = enum_thorough_simple.AnonEnum1;
            if (enum_thorough_simple.ReallyAnInteger != 200)
            {
                throw new Exception("Test Anon 1 failed");
            }
            i += enum_thorough_simple.AnonSpaceEnum1;
            i += AnonStruct.AnonStructEnum1;
        }
        {
            int red = enum_thorough_simple.red;
            enum_thorough_simple.colourTest1(red);
            enum_thorough_simple.colourTest2(red);
            enum_thorough_simple.colourTest3(red);
            enum_thorough_simple.colourTest4(red);
            enum_thorough_simple.myColour = red;
        }
        {
            SpeedClass s     = new SpeedClass();
            int        speed = SpeedClass.slow;
            if (s.speedTest1(speed) != speed)
            {
                throw new Exception("speedTest 1 failed");
            }
            if (s.speedTest2(speed) != speed)
            {
                throw new Exception("speedTest 2 failed");
            }
            if (s.speedTest3(speed) != speed)
            {
                throw new Exception("speedTest 3 failed");
            }
            if (s.speedTest4(speed) != speed)
            {
                throw new Exception("speedTest 4 failed");
            }
            if (s.speedTest5(speed) != speed)
            {
                throw new Exception("speedTest 5 failed");
            }
            if (s.speedTest6(speed) != speed)
            {
                throw new Exception("speedTest 6 failed");
            }
            if (s.speedTest7(speed) != speed)
            {
                throw new Exception("speedTest 7 failed");
            }
            if (s.speedTest8(speed) != speed)
            {
                throw new Exception("speedTest 8 failed");
            }

            if (enum_thorough_simple.speedTest1(speed) != speed)
            {
                throw new Exception("speedTest Global 1 failed");
            }
            if (enum_thorough_simple.speedTest2(speed) != speed)
            {
                throw new Exception("speedTest Global 2 failed");
            }
            if (enum_thorough_simple.speedTest3(speed) != speed)
            {
                throw new Exception("speedTest Global 3 failed");
            }
            if (enum_thorough_simple.speedTest4(speed) != speed)
            {
                throw new Exception("speedTest Global 4 failed");
            }
            if (enum_thorough_simple.speedTest5(speed) != speed)
            {
                throw new Exception("speedTest Global 5 failed");
            }
        }
        {
            SpeedClass s         = new SpeedClass();
            int        slow      = SpeedClass.slow;
            int        lightning = SpeedClass.lightning;

            if (s.mySpeedtd1 != slow)
            {
                throw new Exception("mySpeedtd1 1 failed");
            }
            if (s.mySpeedtd1 != 10)
            {
                throw new Exception("mySpeedtd1 2 failed");
            }

            s.mySpeedtd1 = lightning;
            if (s.mySpeedtd1 != lightning)
            {
                throw new Exception("mySpeedtd1 3 failed");
            }
            if (s.mySpeedtd1 != 31)
            {
                throw new Exception("mySpeedtd1 4 failed");
            }
        }
        {
            if (enum_thorough_simple.namedanonTest1(enum_thorough_simple.NamedAnon2) != enum_thorough_simple.NamedAnon2)
            {
                throw new Exception("namedanonTest 1 failed");
            }
        }
        {
            int val = enum_thorough_simple.TwoNames2;
            if (enum_thorough_simple.twonamesTest1(val) != val)
            {
                throw new Exception("twonamesTest 1 failed");
            }
            if (enum_thorough_simple.twonamesTest2(val) != val)
            {
                throw new Exception("twonamesTest 2 failed");
            }
            if (enum_thorough_simple.twonamesTest3(val) != val)
            {
                throw new Exception("twonamesTest 3 failed");
            }
        }
        {
            TwoNamesStruct t   = new TwoNamesStruct();
            int            val = TwoNamesStruct.TwoNamesStruct1;
            if (t.twonamesTest1(val) != val)
            {
                throw new Exception("twonamesTest 1 failed");
            }
            if (t.twonamesTest2(val) != val)
            {
                throw new Exception("twonamesTest 2 failed");
            }
            if (t.twonamesTest3(val) != val)
            {
                throw new Exception("twonamesTest 3 failed");
            }
        }
        {
            int val = enum_thorough_simple.NamedAnonSpace2;
            if (enum_thorough_simple.namedanonspaceTest1(val) != val)
            {
                throw new Exception("namedanonspaceTest 1 failed");
            }
            if (enum_thorough_simple.namedanonspaceTest2(val) != val)
            {
                throw new Exception("namedanonspaceTest 2 failed");
            }
            if (enum_thorough_simple.namedanonspaceTest3(val) != val)
            {
                throw new Exception("namedanonspaceTest 3 failed");
            }
            if (enum_thorough_simple.namedanonspaceTest4(val) != val)
            {
                throw new Exception("namedanonspaceTest 4 failed");
            }
        }
        {
            TemplateClassInt t = new TemplateClassInt();
            int galileo        = TemplateClassInt.galileo;

            if (t.scientistsTest1(galileo) != galileo)
            {
                throw new Exception("scientistsTest 1 failed");
            }
            if (t.scientistsTest2(galileo) != galileo)
            {
                throw new Exception("scientistsTest 2 failed");
            }
            if (t.scientistsTest3(galileo) != galileo)
            {
                throw new Exception("scientistsTest 3 failed");
            }
            if (t.scientistsTest4(galileo) != galileo)
            {
                throw new Exception("scientistsTest 4 failed");
            }
            if (t.scientistsTest5(galileo) != galileo)
            {
                throw new Exception("scientistsTest 5 failed");
            }
            if (t.scientistsTest6(galileo) != galileo)
            {
                throw new Exception("scientistsTest 6 failed");
            }
            if (t.scientistsTest7(galileo) != galileo)
            {
                throw new Exception("scientistsTest 7 failed");
            }
            if (t.scientistsTest8(galileo) != galileo)
            {
                throw new Exception("scientistsTest 8 failed");
            }
            if (t.scientistsTest9(galileo) != galileo)
            {
                throw new Exception("scientistsTest 9 failed");
            }
//      if (t.scientistsTestA(galileo) != galileo) throw new Exception("scientistsTest A failed");
            if (t.scientistsTestB(galileo) != galileo)
            {
                throw new Exception("scientistsTest B failed");
            }
//      if (t.scientistsTestC(galileo) != galileo) throw new Exception("scientistsTest C failed");
            if (t.scientistsTestD(galileo) != galileo)
            {
                throw new Exception("scientistsTest D failed");
            }
            if (t.scientistsTestE(galileo) != galileo)
            {
                throw new Exception("scientistsTest E failed");
            }
            if (t.scientistsTestF(galileo) != galileo)
            {
                throw new Exception("scientistsTest F failed");
            }
            if (t.scientistsTestG(galileo) != galileo)
            {
                throw new Exception("scientistsTest G failed");
            }
            if (t.scientistsTestH(galileo) != galileo)
            {
                throw new Exception("scientistsTest H failed");
            }
            if (t.scientistsTestI(galileo) != galileo)
            {
                throw new Exception("scientistsTest I failed");
            }
            if (t.scientistsTestJ(galileo) != galileo)
            {
                throw new Exception("scientistsTest J failed");
            }

            if (enum_thorough_simple.scientistsTest1(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 1 failed");
            }
            if (enum_thorough_simple.scientistsTest2(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 2 failed");
            }
            if (enum_thorough_simple.scientistsTest3(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 3 failed");
            }
            if (enum_thorough_simple.scientistsTest4(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 4 failed");
            }
            if (enum_thorough_simple.scientistsTest5(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 5 failed");
            }
            if (enum_thorough_simple.scientistsTest6(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 6 failed");
            }
            if (enum_thorough_simple.scientistsTest7(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 7 failed");
            }
            if (enum_thorough_simple.scientistsTest8(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 8 failed");
            }
        }
        {
            TClassInt t       = new TClassInt();
            int       bell    = TClassInt.bell;
            int       galileo = TemplateClassInt.galileo;
            if (t.scientistsNameTest1(bell) != bell)
            {
                throw new Exception("scientistsNameTest 1 failed");
            }
            if (t.scientistsNameTest2(bell) != bell)
            {
                throw new Exception("scientistsNameTest 2 failed");
            }
            if (t.scientistsNameTest3(bell) != bell)
            {
                throw new Exception("scientistsNameTest 3 failed");
            }
            if (t.scientistsNameTest4(bell) != bell)
            {
                throw new Exception("scientistsNameTest 4 failed");
            }
            if (t.scientistsNameTest5(bell) != bell)
            {
                throw new Exception("scientistsNameTest 5 failed");
            }
            if (t.scientistsNameTest6(bell) != bell)
            {
                throw new Exception("scientistsNameTest 6 failed");
            }
            if (t.scientistsNameTest7(bell) != bell)
            {
                throw new Exception("scientistsNameTest 7 failed");
            }
            if (t.scientistsNameTest8(bell) != bell)
            {
                throw new Exception("scientistsNameTest 8 failed");
            }
            if (t.scientistsNameTest9(bell) != bell)
            {
                throw new Exception("scientistsNameTest 9 failed");
            }
//      if (t.scientistsNameTestA(bell) != bell) throw new Exception("scientistsNameTest A failed");
            if (t.scientistsNameTestB(bell) != bell)
            {
                throw new Exception("scientistsNameTest B failed");
            }
//      if (t.scientistsNameTestC(bell) != bell) throw new Exception("scientistsNameTest C failed");
            if (t.scientistsNameTestD(bell) != bell)
            {
                throw new Exception("scientistsNameTest D failed");
            }
            if (t.scientistsNameTestE(bell) != bell)
            {
                throw new Exception("scientistsNameTest E failed");
            }
            if (t.scientistsNameTestF(bell) != bell)
            {
                throw new Exception("scientistsNameTest F failed");
            }
            if (t.scientistsNameTestG(bell) != bell)
            {
                throw new Exception("scientistsNameTest G failed");
            }
            if (t.scientistsNameTestH(bell) != bell)
            {
                throw new Exception("scientistsNameTest H failed");
            }
            if (t.scientistsNameTestI(bell) != bell)
            {
                throw new Exception("scientistsNameTest I failed");
            }

            if (t.scientistsNameSpaceTest1(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 1 failed");
            }
            if (t.scientistsNameSpaceTest2(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 2 failed");
            }
            if (t.scientistsNameSpaceTest3(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 3 failed");
            }
            if (t.scientistsNameSpaceTest4(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 4 failed");
            }
            if (t.scientistsNameSpaceTest5(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 5 failed");
            }
            if (t.scientistsNameSpaceTest6(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 6 failed");
            }
            if (t.scientistsNameSpaceTest7(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 7 failed");
            }

            if (t.scientistsOtherTest1(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 1 failed");
            }
            if (t.scientistsOtherTest2(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 2 failed");
            }
            if (t.scientistsOtherTest3(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 3 failed");
            }
            if (t.scientistsOtherTest4(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 4 failed");
            }
            if (t.scientistsOtherTest5(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 5 failed");
            }
            if (t.scientistsOtherTest6(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 6 failed");
            }
            if (t.scientistsOtherTest7(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 7 failed");
            }

            if (enum_thorough_simple.scientistsNameTest1(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 1 failed");
            }
            if (enum_thorough_simple.scientistsNameTest2(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 2 failed");
            }
            if (enum_thorough_simple.scientistsNameTest3(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 3 failed");
            }
            if (enum_thorough_simple.scientistsNameTest4(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 4 failed");
            }
            if (enum_thorough_simple.scientistsNameTest5(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 5 failed");
            }
            if (enum_thorough_simple.scientistsNameTest6(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 6 failed");
            }
            if (enum_thorough_simple.scientistsNameTest7(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 7 failed");
            }

            if (enum_thorough_simple.scientistsNameSpaceTest1(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 1 failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTest2(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 2 failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTest3(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 3 failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTest4(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 4 failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTest5(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 5 failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTest6(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 6 failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTest7(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 7 failed");
            }

            if (enum_thorough_simple.scientistsNameSpaceTest8(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 8 failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTest9(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 9 failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestA(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global A failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestB(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global B failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestC(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global C failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestD(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global D failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestE(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global E failed");
            }

            if (enum_thorough_simple.scientistsNameSpaceTestF(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global F failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestG(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global G failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestH(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global H failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestI(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global I failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestJ(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global J failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestK(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global K failed");
            }
            if (enum_thorough_simple.scientistsNameSpaceTestL(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global L failed");
            }
        }
        {
            int val = enum_thorough_simple.argh;
            if (enum_thorough_simple.renameTest1(val) != val)
            {
                throw new Exception("renameTest Global 1 failed");
            }
            if (enum_thorough_simple.renameTest2(val) != val)
            {
                throw new Exception("renameTest Global 2 failed");
            }
        }
        {
            NewNameStruct n = new NewNameStruct();
            if (n.renameTest1(NewNameStruct.bang) != NewNameStruct.bang)
            {
                throw new Exception("renameTest 1 failed");
            }
            if (n.renameTest2(NewNameStruct.bang) != NewNameStruct.bang)
            {
                throw new Exception("renameTest 2 failed");
            }
            if (n.renameTest3(NewNameStruct.simple1) != NewNameStruct.simple1)
            {
                throw new Exception("renameTest 3 failed");
            }
            if (n.renameTest4(NewNameStruct.doublename1) != NewNameStruct.doublename1)
            {
                throw new Exception("renameTest 4 failed");
            }
            if (n.renameTest5(NewNameStruct.doublename1) != NewNameStruct.doublename1)
            {
                throw new Exception("renameTest 5 failed");
            }
            if (n.renameTest6(NewNameStruct.singlename1) != NewNameStruct.singlename1)
            {
                throw new Exception("renameTest 6 failed");
            }
        }
        {
            if (enum_thorough_simple.renameTest3(NewNameStruct.bang) != NewNameStruct.bang)
            {
                throw new Exception("renameTest Global 3 failed");
            }
            if (enum_thorough_simple.renameTest4(NewNameStruct.simple1) != NewNameStruct.simple1)
            {
                throw new Exception("renameTest Global 4 failed");
            }
            if (enum_thorough_simple.renameTest5(NewNameStruct.doublename1) != NewNameStruct.doublename1)
            {
                throw new Exception("renameTest Global 5 failed");
            }
            if (enum_thorough_simple.renameTest6(NewNameStruct.doublename1) != NewNameStruct.doublename1)
            {
                throw new Exception("renameTest Global 6 failed");
            }
            if (enum_thorough_simple.renameTest7(NewNameStruct.singlename1) != NewNameStruct.singlename1)
            {
                throw new Exception("renameTest Global 7 failed");
            }
        }
        {
            TreesClass t    = new TreesClass();
            int        pine = TreesClass.pine;

            if (t.treesTest1(pine) != pine)
            {
                throw new Exception("treesTest 1 failed");
            }
            if (t.treesTest2(pine) != pine)
            {
                throw new Exception("treesTest 2 failed");
            }
            if (t.treesTest3(pine) != pine)
            {
                throw new Exception("treesTest 3 failed");
            }
            if (t.treesTest4(pine) != pine)
            {
                throw new Exception("treesTest 4 failed");
            }
            if (t.treesTest5(pine) != pine)
            {
                throw new Exception("treesTest 5 failed");
            }
            if (t.treesTest6(pine) != pine)
            {
                throw new Exception("treesTest 6 failed");
            }
            if (t.treesTest7(pine) != pine)
            {
                throw new Exception("treesTest 7 failed");
            }
            if (t.treesTest8(pine) != pine)
            {
                throw new Exception("treesTest 8 failed");
            }
            if (t.treesTest9(pine) != pine)
            {
                throw new Exception("treesTest 9 failed");
            }
            if (t.treesTestA(pine) != pine)
            {
                throw new Exception("treesTest A failed");
            }
            if (t.treesTestB(pine) != pine)
            {
                throw new Exception("treesTest B failed");
            }
            if (t.treesTestC(pine) != pine)
            {
                throw new Exception("treesTest C failed");
            }
            if (t.treesTestD(pine) != pine)
            {
                throw new Exception("treesTest D failed");
            }
            if (t.treesTestE(pine) != pine)
            {
                throw new Exception("treesTest E failed");
            }
            if (t.treesTestF(pine) != pine)
            {
                throw new Exception("treesTest F failed");
            }
            if (t.treesTestG(pine) != pine)
            {
                throw new Exception("treesTest G failed");
            }
            if (t.treesTestH(pine) != pine)
            {
                throw new Exception("treesTest H failed");
            }
            if (t.treesTestI(pine) != pine)
            {
                throw new Exception("treesTest I failed");
            }
            if (t.treesTestJ(pine) != pine)
            {
                throw new Exception("treesTest J failed");
            }
            if (t.treesTestK(pine) != pine)
            {
                throw new Exception("treesTest K failed");
            }
            if (t.treesTestL(pine) != pine)
            {
                throw new Exception("treesTest L failed");
            }
            if (t.treesTestM(pine) != pine)
            {
                throw new Exception("treesTest M failed");
            }
            if (t.treesTestN(pine) != pine)
            {
                throw new Exception("treesTest N failed");
            }
            if (t.treesTestO(pine) != pine)
            {
                throw new Exception("treesTest O failed");
            }

            if (enum_thorough_simple.treesTest1(pine) != pine)
            {
                throw new Exception("treesTest Global 1 failed");
            }
            if (enum_thorough_simple.treesTest2(pine) != pine)
            {
                throw new Exception("treesTest Global 2 failed");
            }
            if (enum_thorough_simple.treesTest3(pine) != pine)
            {
                throw new Exception("treesTest Global 3 failed");
            }
            if (enum_thorough_simple.treesTest4(pine) != pine)
            {
                throw new Exception("treesTest Global 4 failed");
            }
            if (enum_thorough_simple.treesTest5(pine) != pine)
            {
                throw new Exception("treesTest Global 5 failed");
            }
            if (enum_thorough_simple.treesTest6(pine) != pine)
            {
                throw new Exception("treesTest Global 6 failed");
            }
            if (enum_thorough_simple.treesTest7(pine) != pine)
            {
                throw new Exception("treesTest Global 7 failed");
            }
            if (enum_thorough_simple.treesTest8(pine) != pine)
            {
                throw new Exception("treesTest Global 8 failed");
            }
            if (enum_thorough_simple.treesTest9(pine) != pine)
            {
                throw new Exception("treesTest Global 9 failed");
            }
            if (enum_thorough_simple.treesTestA(pine) != pine)
            {
                throw new Exception("treesTest Global A failed");
            }
            if (enum_thorough_simple.treesTestB(pine) != pine)
            {
                throw new Exception("treesTest Global B failed");
            }
            if (enum_thorough_simple.treesTestC(pine) != pine)
            {
                throw new Exception("treesTest Global C failed");
            }
            if (enum_thorough_simple.treesTestD(pine) != pine)
            {
                throw new Exception("treesTest Global D failed");
            }
            if (enum_thorough_simple.treesTestE(pine) != pine)
            {
                throw new Exception("treesTest Global E failed");
            }
            if (enum_thorough_simple.treesTestF(pine) != pine)
            {
                throw new Exception("treesTest Global F failed");
            }
            if (enum_thorough_simple.treesTestG(pine) != pine)
            {
                throw new Exception("treesTest Global G failed");
            }
            if (enum_thorough_simple.treesTestH(pine) != pine)
            {
                throw new Exception("treesTest Global H failed");
            }
            if (enum_thorough_simple.treesTestI(pine) != pine)
            {
                throw new Exception("treesTest Global I failed");
            }
            if (enum_thorough_simple.treesTestJ(pine) != pine)
            {
                throw new Exception("treesTest Global J failed");
            }
            if (enum_thorough_simple.treesTestK(pine) != pine)
            {
                throw new Exception("treesTest Global K failed");
            }
            if (enum_thorough_simple.treesTestL(pine) != pine)
            {
                throw new Exception("treesTest Global L failed");
            }
            if (enum_thorough_simple.treesTestM(pine) != pine)
            {
                throw new Exception("treesTest Global M failed");
            }
//      if (enum_thorough_simple.treesTestN(pine) != pine) throw new Exception("treesTest Global N failed");
            if (enum_thorough_simple.treesTestO(pine) != pine)
            {
                throw new Exception("treesTest Global O failed");
            }
            if (enum_thorough_simple.treesTestP(pine) != pine)
            {
                throw new Exception("treesTest Global P failed");
            }
            if (enum_thorough_simple.treesTestQ(pine) != pine)
            {
                throw new Exception("treesTest Global Q failed");
            }
            if (enum_thorough_simple.treesTestR(pine) != pine)
            {
                throw new Exception("treesTest Global R failed");
            }
        }
        {
            HairStruct h      = new HairStruct();
            int        ginger = HairStruct.ginger;

            if (h.hairTest1(ginger) != ginger)
            {
                throw new Exception("hairTest 1 failed");
            }
            if (h.hairTest2(ginger) != ginger)
            {
                throw new Exception("hairTest 2 failed");
            }
            if (h.hairTest3(ginger) != ginger)
            {
                throw new Exception("hairTest 3 failed");
            }
            if (h.hairTest4(ginger) != ginger)
            {
                throw new Exception("hairTest 4 failed");
            }
            if (h.hairTest5(ginger) != ginger)
            {
                throw new Exception("hairTest 5 failed");
            }
            if (h.hairTest6(ginger) != ginger)
            {
                throw new Exception("hairTest 6 failed");
            }
            if (h.hairTest7(ginger) != ginger)
            {
                throw new Exception("hairTest 7 failed");
            }
            if (h.hairTest8(ginger) != ginger)
            {
                throw new Exception("hairTest 8 failed");
            }
            if (h.hairTest9(ginger) != ginger)
            {
                throw new Exception("hairTest 9 failed");
            }
            if (h.hairTestA(ginger) != ginger)
            {
                throw new Exception("hairTest A failed");
            }
            if (h.hairTestB(ginger) != ginger)
            {
                throw new Exception("hairTest B failed");
            }

            int red = enum_thorough_simple.red;
            if (h.colourTest1(red) != red)
            {
                throw new Exception("colourTest HairStruct 1 failed");
            }
            if (h.colourTest2(red) != red)
            {
                throw new Exception("colourTest HairStruct 2 failed");
            }
            if (h.namedanonTest1(enum_thorough_simple.NamedAnon2) != enum_thorough_simple.NamedAnon2)
            {
                throw new Exception("namedanonTest HairStruct 1 failed");
            }
            if (h.namedanonspaceTest1(enum_thorough_simple.NamedAnonSpace2) != enum_thorough_simple.NamedAnonSpace2)
            {
                throw new Exception("namedanonspaceTest HairStruct 1 failed");
            }

            int fir = TreesClass.fir;
            if (h.treesGlobalTest1(fir) != fir)
            {
                throw new Exception("treesGlobalTest1 HairStruct 1 failed");
            }
            if (h.treesGlobalTest2(fir) != fir)
            {
                throw new Exception("treesGlobalTest1 HairStruct 2 failed");
            }
            if (h.treesGlobalTest3(fir) != fir)
            {
                throw new Exception("treesGlobalTest1 HairStruct 3 failed");
            }
            if (h.treesGlobalTest4(fir) != fir)
            {
                throw new Exception("treesGlobalTest1 HairStruct 4 failed");
            }
        }
        {
            int blonde = HairStruct.blonde;
            if (enum_thorough_simple.hairTest1(blonde) != blonde)
            {
                throw new Exception("hairTest Global 1 failed");
            }
            if (enum_thorough_simple.hairTest2(blonde) != blonde)
            {
                throw new Exception("hairTest Global 2 failed");
            }
            if (enum_thorough_simple.hairTest3(blonde) != blonde)
            {
                throw new Exception("hairTest Global 3 failed");
            }
            if (enum_thorough_simple.hairTest4(blonde) != blonde)
            {
                throw new Exception("hairTest Global 4 failed");
            }
            if (enum_thorough_simple.hairTest5(blonde) != blonde)
            {
                throw new Exception("hairTest Global 5 failed");
            }
            if (enum_thorough_simple.hairTest6(blonde) != blonde)
            {
                throw new Exception("hairTest Global 6 failed");
            }
            if (enum_thorough_simple.hairTest7(blonde) != blonde)
            {
                throw new Exception("hairTest Global 7 failed");
            }
            if (enum_thorough_simple.hairTest8(blonde) != blonde)
            {
                throw new Exception("hairTest Global 8 failed");
            }
            if (enum_thorough_simple.hairTest9(blonde) != blonde)
            {
                throw new Exception("hairTest Global 9 failed");
            }
            if (enum_thorough_simple.hairTestA(blonde) != blonde)
            {
                throw new Exception("hairTest Global A failed");
            }
            if (enum_thorough_simple.hairTestB(blonde) != blonde)
            {
                throw new Exception("hairTest Global B failed");
            }
            if (enum_thorough_simple.hairTestC(blonde) != blonde)
            {
                throw new Exception("hairTest Global C failed");
            }

            if (enum_thorough_simple.hairTestA1(blonde) != blonde)
            {
                throw new Exception("hairTest Global A1 failed");
            }
            if (enum_thorough_simple.hairTestA2(blonde) != blonde)
            {
                throw new Exception("hairTest Global A2 failed");
            }
            if (enum_thorough_simple.hairTestA3(blonde) != blonde)
            {
                throw new Exception("hairTest Global A3 failed");
            }
            if (enum_thorough_simple.hairTestA4(blonde) != blonde)
            {
                throw new Exception("hairTest Global A4 failed");
            }
            if (enum_thorough_simple.hairTestA5(blonde) != blonde)
            {
                throw new Exception("hairTest Global A5 failed");
            }
            if (enum_thorough_simple.hairTestA6(blonde) != blonde)
            {
                throw new Exception("hairTest Global A6 failed");
            }
            if (enum_thorough_simple.hairTestA7(blonde) != blonde)
            {
                throw new Exception("hairTest Global A7 failed");
            }
            if (enum_thorough_simple.hairTestA8(blonde) != blonde)
            {
                throw new Exception("hairTest Global A8 failed");
            }
            if (enum_thorough_simple.hairTestA9(blonde) != blonde)
            {
                throw new Exception("hairTest Global A9 failed");
            }
            if (enum_thorough_simple.hairTestAA(blonde) != blonde)
            {
                throw new Exception("hairTest Global AA failed");
            }
            if (enum_thorough_simple.hairTestAB(blonde) != blonde)
            {
                throw new Exception("hairTest Global AB failed");
            }
            if (enum_thorough_simple.hairTestAC(blonde) != blonde)
            {
                throw new Exception("hairTest Global AC failed");
            }

            if (enum_thorough_simple.hairTestB1(blonde) != blonde)
            {
                throw new Exception("hairTest Global B1 failed");
            }
            if (enum_thorough_simple.hairTestB2(blonde) != blonde)
            {
                throw new Exception("hairTest Global B2 failed");
            }
            if (enum_thorough_simple.hairTestB3(blonde) != blonde)
            {
                throw new Exception("hairTest Global B3 failed");
            }
            if (enum_thorough_simple.hairTestB4(blonde) != blonde)
            {
                throw new Exception("hairTest Global B4 failed");
            }
            if (enum_thorough_simple.hairTestB5(blonde) != blonde)
            {
                throw new Exception("hairTest Global B5 failed");
            }
            if (enum_thorough_simple.hairTestB6(blonde) != blonde)
            {
                throw new Exception("hairTest Global B6 failed");
            }
            if (enum_thorough_simple.hairTestB7(blonde) != blonde)
            {
                throw new Exception("hairTest Global B7 failed");
            }
            if (enum_thorough_simple.hairTestB8(blonde) != blonde)
            {
                throw new Exception("hairTest Global B8 failed");
            }
            if (enum_thorough_simple.hairTestB9(blonde) != blonde)
            {
                throw new Exception("hairTest Global B9 failed");
            }
            if (enum_thorough_simple.hairTestBA(blonde) != blonde)
            {
                throw new Exception("hairTest Global BA failed");
            }
            if (enum_thorough_simple.hairTestBB(blonde) != blonde)
            {
                throw new Exception("hairTest Global BB failed");
            }
            if (enum_thorough_simple.hairTestBC(blonde) != blonde)
            {
                throw new Exception("hairTest Global BC failed");
            }

            if (enum_thorough_simple.hairTestC1(blonde) != blonde)
            {
                throw new Exception("hairTest Global C1 failed");
            }
            if (enum_thorough_simple.hairTestC2(blonde) != blonde)
            {
                throw new Exception("hairTest Global C2 failed");
            }
            if (enum_thorough_simple.hairTestC3(blonde) != blonde)
            {
                throw new Exception("hairTest Global C3 failed");
            }
            if (enum_thorough_simple.hairTestC4(blonde) != blonde)
            {
                throw new Exception("hairTest Global C4 failed");
            }
            if (enum_thorough_simple.hairTestC5(blonde) != blonde)
            {
                throw new Exception("hairTest Global C5 failed");
            }
            if (enum_thorough_simple.hairTestC6(blonde) != blonde)
            {
                throw new Exception("hairTest Global C6 failed");
            }
            if (enum_thorough_simple.hairTestC7(blonde) != blonde)
            {
                throw new Exception("hairTest Global C7 failed");
            }
            if (enum_thorough_simple.hairTestC8(blonde) != blonde)
            {
                throw new Exception("hairTest Global C8 failed");
            }
            if (enum_thorough_simple.hairTestC9(blonde) != blonde)
            {
                throw new Exception("hairTest Global C9 failed");
            }
            if (enum_thorough_simple.hairTestCA(blonde) != blonde)
            {
                throw new Exception("hairTest Global CA failed");
            }
            if (enum_thorough_simple.hairTestCB(blonde) != blonde)
            {
                throw new Exception("hairTest Global CB failed");
            }
            if (enum_thorough_simple.hairTestCC(blonde) != blonde)
            {
                throw new Exception("hairTest Global CC failed");
            }
        }
        {
            FirStruct f      = new FirStruct();
            int       blonde = HairStruct.blonde;

            if (f.hairTestFir1(blonde) != blonde)
            {
                throw new Exception("hairTestFir 1 failed");
            }
            if (f.hairTestFir2(blonde) != blonde)
            {
                throw new Exception("hairTestFir 2 failed");
            }
            if (f.hairTestFir3(blonde) != blonde)
            {
                throw new Exception("hairTestFir 3 failed");
            }
            if (f.hairTestFir4(blonde) != blonde)
            {
                throw new Exception("hairTestFir 4 failed");
            }
            if (f.hairTestFir5(blonde) != blonde)
            {
                throw new Exception("hairTestFir 5 failed");
            }
            if (f.hairTestFir6(blonde) != blonde)
            {
                throw new Exception("hairTestFir 6 failed");
            }
            if (f.hairTestFir7(blonde) != blonde)
            {
                throw new Exception("hairTestFir 7 failed");
            }
            if (f.hairTestFir8(blonde) != blonde)
            {
                throw new Exception("hairTestFir 8 failed");
            }
            if (f.hairTestFir9(blonde) != blonde)
            {
                throw new Exception("hairTestFir 9 failed");
            }
            if (f.hairTestFirA(blonde) != blonde)
            {
                throw new Exception("hairTestFir A failed");
            }
        }
        {
            enum_thorough_simple.GlobalInstance = enum_thorough_simple.globalinstance2;
            if (enum_thorough_simple.GlobalInstance != enum_thorough_simple.globalinstance2)
            {
                throw new Exception("GlobalInstance 1 failed");
            }

            Instances i = new Instances();
            i.MemberInstance = Instances.memberinstance3;
            if (i.MemberInstance != Instances.memberinstance3)
            {
                throw new Exception("MemberInstance 1 failed");
            }
        }
        {
            if (enum_thorough_simple.repeatTest(enum_thorough_simple.one) != 1)
            {
                throw new Exception("repeatTest 1 failed");
            }
            if (enum_thorough_simple.repeatTest(enum_thorough_simple.initial) != 1)
            {
                throw new Exception("repeatTest 2 failed");
            }
            if (enum_thorough_simple.repeatTest(enum_thorough_simple.two) != 2)
            {
                throw new Exception("repeatTest 3 failed");
            }
            if (enum_thorough_simple.repeatTest(enum_thorough_simple.three) != 3)
            {
                throw new Exception("repeatTest 4 failed");
            }
            if (enum_thorough_simple.repeatTest(enum_thorough_simple.last) != 3)
            {
                throw new Exception("repeatTest 5 failed");
            }
            if (enum_thorough_simple.repeatTest(enum_thorough_simple.end) != 3)
            {
                throw new Exception("repeatTest 6 failed");
            }
        }
    }
Пример #3
0
    static void Main()
    {
        {
            // Anonymous enums
            int i = enum_thorough.AnonEnum1;
            if (enum_thorough.ReallyAnInteger != 200)
            {
                throw new Exception("Test Anon 1 failed");
            }
            i += enum_thorough.AnonSpaceEnum1;
            i += AnonStruct.AnonStructEnum1;
        }
        {
            colour red = colour.red;
            enum_thorough.colourTest1(red);
            enum_thorough.colourTest2(red);
            enum_thorough.colourTest3(red);
            enum_thorough.colourTest4(red);
            enum_thorough.myColour = red;
        }
        {
            SpeedClass       s     = new SpeedClass();
            SpeedClass.speed speed = SpeedClass.speed.slow;
            if (s.speedTest1(speed) != speed)
            {
                throw new Exception("speedTest 1 failed");
            }
            if (s.speedTest2(speed) != speed)
            {
                throw new Exception("speedTest 2 failed");
            }
            if (s.speedTest3(speed) != speed)
            {
                throw new Exception("speedTest 3 failed");
            }
            if (s.speedTest4(speed) != speed)
            {
                throw new Exception("speedTest 4 failed");
            }
            if (s.speedTest5(speed) != speed)
            {
                throw new Exception("speedTest 5 failed");
            }
            if (s.speedTest6(speed) != speed)
            {
                throw new Exception("speedTest 6 failed");
            }
            if (s.speedTest7(speed) != speed)
            {
                throw new Exception("speedTest 7 failed");
            }
            if (s.speedTest8(speed) != speed)
            {
                throw new Exception("speedTest 8 failed");
            }

            if (enum_thorough.speedTest1(speed) != speed)
            {
                throw new Exception("speedTest Global 1 failed");
            }
            if (enum_thorough.speedTest2(speed) != speed)
            {
                throw new Exception("speedTest Global 2 failed");
            }
            if (enum_thorough.speedTest3(speed) != speed)
            {
                throw new Exception("speedTest Global 3 failed");
            }
            if (enum_thorough.speedTest4(speed) != speed)
            {
                throw new Exception("speedTest Global 4 failed");
            }
            if (enum_thorough.speedTest5(speed) != speed)
            {
                throw new Exception("speedTest Global 5 failed");
            }
        }
        {
            SpeedClass       s         = new SpeedClass();
            SpeedClass.speed slow      = SpeedClass.speed.slow;
            SpeedClass.speed lightning = SpeedClass.speed.lightning;

            if (s.mySpeedtd1 != slow)
            {
                throw new Exception("mySpeedtd1 1 failed");
            }
            if ((int)s.mySpeedtd1 != 10)
            {
                throw new Exception("mySpeedtd1 2 failed");
            }

            s.mySpeedtd1 = lightning;
            if (s.mySpeedtd1 != lightning)
            {
                throw new Exception("mySpeedtd1 3 failed");
            }
            if ((int)s.mySpeedtd1 != 31)
            {
                throw new Exception("mySpeedtd1 4 failed");
            }
        }
        {
            if (enum_thorough.namedanonTest1(namedanon.NamedAnon2) != namedanon.NamedAnon2)
            {
                throw new Exception("namedanonTest 1 failed");
            }
        }
        {
            twonames val = twonames.TwoNames2;
            if (enum_thorough.twonamesTest1(val) != val)
            {
                throw new Exception("twonamesTest 1 failed");
            }
            if (enum_thorough.twonamesTest2(val) != val)
            {
                throw new Exception("twonamesTest 2 failed");
            }
            if (enum_thorough.twonamesTest3(val) != val)
            {
                throw new Exception("twonamesTest 3 failed");
            }
        }
        {
            TwoNamesStruct          t   = new TwoNamesStruct();
            TwoNamesStruct.twonames val = TwoNamesStruct.twonames.TwoNamesStruct1;
            if (t.twonamesTest1(val) != val)
            {
                throw new Exception("twonamesTest 1 failed");
            }
            if (t.twonamesTest2(val) != val)
            {
                throw new Exception("twonamesTest 2 failed");
            }
            if (t.twonamesTest3(val) != val)
            {
                throw new Exception("twonamesTest 3 failed");
            }
        }
        {
            namedanonspace val = namedanonspace.NamedAnonSpace2;
            if (enum_thorough.namedanonspaceTest1(val) != val)
            {
                throw new Exception("namedanonspaceTest 1 failed");
            }
            if (enum_thorough.namedanonspaceTest2(val) != val)
            {
                throw new Exception("namedanonspaceTest 2 failed");
            }
            if (enum_thorough.namedanonspaceTest3(val) != val)
            {
                throw new Exception("namedanonspaceTest 3 failed");
            }
            if (enum_thorough.namedanonspaceTest4(val) != val)
            {
                throw new Exception("namedanonspaceTest 4 failed");
            }
        }
        {
            TemplateClassInt            t       = new TemplateClassInt();
            TemplateClassInt.scientists galileo = TemplateClassInt.scientists.galileo;

            if (t.scientistsTest1(galileo) != galileo)
            {
                throw new Exception("scientistsTest 1 failed");
            }
            if (t.scientistsTest2(galileo) != galileo)
            {
                throw new Exception("scientistsTest 2 failed");
            }
            if (t.scientistsTest3(galileo) != galileo)
            {
                throw new Exception("scientistsTest 3 failed");
            }
            if (t.scientistsTest4(galileo) != galileo)
            {
                throw new Exception("scientistsTest 4 failed");
            }
            if (t.scientistsTest5(galileo) != galileo)
            {
                throw new Exception("scientistsTest 5 failed");
            }
            if (t.scientistsTest6(galileo) != galileo)
            {
                throw new Exception("scientistsTest 6 failed");
            }
            if (t.scientistsTest7(galileo) != galileo)
            {
                throw new Exception("scientistsTest 7 failed");
            }
            if (t.scientistsTest8(galileo) != galileo)
            {
                throw new Exception("scientistsTest 8 failed");
            }
            if (t.scientistsTest9(galileo) != galileo)
            {
                throw new Exception("scientistsTest 9 failed");
            }
//      if (t.scientistsTestA(galileo) != galileo) throw new Exception("scientistsTest A failed");
            if (t.scientistsTestB(galileo) != galileo)
            {
                throw new Exception("scientistsTest B failed");
            }
//      if (t.scientistsTestC(galileo) != galileo) throw new Exception("scientistsTest C failed");
            if (t.scientistsTestD(galileo) != galileo)
            {
                throw new Exception("scientistsTest D failed");
            }
            if (t.scientistsTestE(galileo) != galileo)
            {
                throw new Exception("scientistsTest E failed");
            }
            if (t.scientistsTestF(galileo) != galileo)
            {
                throw new Exception("scientistsTest F failed");
            }
            if (t.scientistsTestG(galileo) != galileo)
            {
                throw new Exception("scientistsTest G failed");
            }
            if (t.scientistsTestH(galileo) != galileo)
            {
                throw new Exception("scientistsTest H failed");
            }
            if (t.scientistsTestI(galileo) != galileo)
            {
                throw new Exception("scientistsTest I failed");
            }
            if (t.scientistsTestJ(galileo) != galileo)
            {
                throw new Exception("scientistsTest J failed");
            }

            if (enum_thorough.scientistsTest1(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 1 failed");
            }
            if (enum_thorough.scientistsTest2(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 2 failed");
            }
            if (enum_thorough.scientistsTest3(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 3 failed");
            }
            if (enum_thorough.scientistsTest4(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 4 failed");
            }
            if (enum_thorough.scientistsTest5(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 5 failed");
            }
            if (enum_thorough.scientistsTest6(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 6 failed");
            }
            if (enum_thorough.scientistsTest7(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 7 failed");
            }
            if (enum_thorough.scientistsTest8(galileo) != galileo)
            {
                throw new Exception("scientistsTest Global 8 failed");
            }
        }
        {
            TClassInt                   t       = new TClassInt();
            TClassInt.scientists        bell    = TClassInt.scientists.bell;
            TemplateClassInt.scientists galileo = TemplateClassInt.scientists.galileo;
            if (t.scientistsNameTest1(bell) != bell)
            {
                throw new Exception("scientistsNameTest 1 failed");
            }
            if (t.scientistsNameTest2(bell) != bell)
            {
                throw new Exception("scientistsNameTest 2 failed");
            }
            if (t.scientistsNameTest3(bell) != bell)
            {
                throw new Exception("scientistsNameTest 3 failed");
            }
            if (t.scientistsNameTest4(bell) != bell)
            {
                throw new Exception("scientistsNameTest 4 failed");
            }
            if (t.scientistsNameTest5(bell) != bell)
            {
                throw new Exception("scientistsNameTest 5 failed");
            }
            if (t.scientistsNameTest6(bell) != bell)
            {
                throw new Exception("scientistsNameTest 6 failed");
            }
            if (t.scientistsNameTest7(bell) != bell)
            {
                throw new Exception("scientistsNameTest 7 failed");
            }
            if (t.scientistsNameTest8(bell) != bell)
            {
                throw new Exception("scientistsNameTest 8 failed");
            }
            if (t.scientistsNameTest9(bell) != bell)
            {
                throw new Exception("scientistsNameTest 9 failed");
            }
//      if (t.scientistsNameTestA(bell) != bell) throw new Exception("scientistsNameTest A failed");
            if (t.scientistsNameTestB(bell) != bell)
            {
                throw new Exception("scientistsNameTest B failed");
            }
//      if (t.scientistsNameTestC(bell) != bell) throw new Exception("scientistsNameTest C failed");
            if (t.scientistsNameTestD(bell) != bell)
            {
                throw new Exception("scientistsNameTest D failed");
            }
            if (t.scientistsNameTestE(bell) != bell)
            {
                throw new Exception("scientistsNameTest E failed");
            }
            if (t.scientistsNameTestF(bell) != bell)
            {
                throw new Exception("scientistsNameTest F failed");
            }
            if (t.scientistsNameTestG(bell) != bell)
            {
                throw new Exception("scientistsNameTest G failed");
            }
            if (t.scientistsNameTestH(bell) != bell)
            {
                throw new Exception("scientistsNameTest H failed");
            }
            if (t.scientistsNameTestI(bell) != bell)
            {
                throw new Exception("scientistsNameTest I failed");
            }

            if (t.scientistsNameSpaceTest1(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 1 failed");
            }
            if (t.scientistsNameSpaceTest2(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 2 failed");
            }
            if (t.scientistsNameSpaceTest3(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 3 failed");
            }
            if (t.scientistsNameSpaceTest4(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 4 failed");
            }
            if (t.scientistsNameSpaceTest5(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 5 failed");
            }
            if (t.scientistsNameSpaceTest6(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 6 failed");
            }
            if (t.scientistsNameSpaceTest7(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest 7 failed");
            }

            if (t.scientistsOtherTest1(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 1 failed");
            }
            if (t.scientistsOtherTest2(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 2 failed");
            }
            if (t.scientistsOtherTest3(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 3 failed");
            }
            if (t.scientistsOtherTest4(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 4 failed");
            }
            if (t.scientistsOtherTest5(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 5 failed");
            }
            if (t.scientistsOtherTest6(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 6 failed");
            }
            if (t.scientistsOtherTest7(galileo) != galileo)
            {
                throw new Exception("scientistsOtherTest 7 failed");
            }

            if (enum_thorough.scientistsNameTest1(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 1 failed");
            }
            if (enum_thorough.scientistsNameTest2(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 2 failed");
            }
            if (enum_thorough.scientistsNameTest3(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 3 failed");
            }
            if (enum_thorough.scientistsNameTest4(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 4 failed");
            }
            if (enum_thorough.scientistsNameTest5(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 5 failed");
            }
            if (enum_thorough.scientistsNameTest6(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 6 failed");
            }
            if (enum_thorough.scientistsNameTest7(bell) != bell)
            {
                throw new Exception("scientistsNameTest Global 7 failed");
            }

            if (enum_thorough.scientistsNameSpaceTest1(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 1 failed");
            }
            if (enum_thorough.scientistsNameSpaceTest2(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 2 failed");
            }
            if (enum_thorough.scientistsNameSpaceTest3(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 3 failed");
            }
            if (enum_thorough.scientistsNameSpaceTest4(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 4 failed");
            }
            if (enum_thorough.scientistsNameSpaceTest5(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 5 failed");
            }
            if (enum_thorough.scientistsNameSpaceTest6(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 6 failed");
            }
            if (enum_thorough.scientistsNameSpaceTest7(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 7 failed");
            }

            if (enum_thorough.scientistsNameSpaceTest8(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 8 failed");
            }
            if (enum_thorough.scientistsNameSpaceTest9(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global 9 failed");
            }
            if (enum_thorough.scientistsNameSpaceTestA(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global A failed");
            }
            if (enum_thorough.scientistsNameSpaceTestB(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global B failed");
            }
            if (enum_thorough.scientistsNameSpaceTestC(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global C failed");
            }
            if (enum_thorough.scientistsNameSpaceTestD(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global D failed");
            }
            if (enum_thorough.scientistsNameSpaceTestE(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global E failed");
            }

            if (enum_thorough.scientistsNameSpaceTestF(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global F failed");
            }
            if (enum_thorough.scientistsNameSpaceTestG(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global G failed");
            }
            if (enum_thorough.scientistsNameSpaceTestH(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global H failed");
            }
            if (enum_thorough.scientistsNameSpaceTestI(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global I failed");
            }
            if (enum_thorough.scientistsNameSpaceTestJ(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global J failed");
            }
            if (enum_thorough.scientistsNameSpaceTestK(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global K failed");
            }
            if (enum_thorough.scientistsNameSpaceTestL(bell) != bell)
            {
                throw new Exception("scientistsNameSpaceTest Global L failed");
            }
        }
        {
            newname val = newname.argh;
            if (enum_thorough.renameTest1(val) != val)
            {
                throw new Exception("renameTest Global 1 failed");
            }
            if (enum_thorough.renameTest2(val) != val)
            {
                throw new Exception("renameTest Global 2 failed");
            }
        }
        {
            NewNameStruct n = new NewNameStruct();
            if (n.renameTest1(NewNameStruct.enumeration.bang) != NewNameStruct.enumeration.bang)
            {
                throw new Exception("renameTest 1 failed");
            }
            if (n.renameTest2(NewNameStruct.enumeration.bang) != NewNameStruct.enumeration.bang)
            {
                throw new Exception("renameTest 2 failed");
            }
            if (n.renameTest3(NewNameStruct.simplerenamed.simple1) != NewNameStruct.simplerenamed.simple1)
            {
                throw new Exception("renameTest 3 failed");
            }
            if (n.renameTest4(NewNameStruct.doublenamerenamed.doublename1) != NewNameStruct.doublenamerenamed.doublename1)
            {
                throw new Exception("renameTest 4 failed");
            }
            if (n.renameTest5(NewNameStruct.doublenamerenamed.doublename1) != NewNameStruct.doublenamerenamed.doublename1)
            {
                throw new Exception("renameTest 5 failed");
            }
            if (n.renameTest6(NewNameStruct.singlenamerenamed.singlename1) != NewNameStruct.singlenamerenamed.singlename1)
            {
                throw new Exception("renameTest 6 failed");
            }
        }
        {
            if (enum_thorough.renameTest3(NewNameStruct.enumeration.bang) != NewNameStruct.enumeration.bang)
            {
                throw new Exception("renameTest Global 3 failed");
            }
            if (enum_thorough.renameTest4(NewNameStruct.simplerenamed.simple1) != NewNameStruct.simplerenamed.simple1)
            {
                throw new Exception("renameTest Global 4 failed");
            }
            if (enum_thorough.renameTest5(NewNameStruct.doublenamerenamed.doublename1) != NewNameStruct.doublenamerenamed.doublename1)
            {
                throw new Exception("renameTest Global 5 failed");
            }
            if (enum_thorough.renameTest6(NewNameStruct.doublenamerenamed.doublename1) != NewNameStruct.doublenamerenamed.doublename1)
            {
                throw new Exception("renameTest Global 6 failed");
            }
            if (enum_thorough.renameTest7(NewNameStruct.singlenamerenamed.singlename1) != NewNameStruct.singlenamerenamed.singlename1)
            {
                throw new Exception("renameTest Global 7 failed");
            }
        }
        {
            TreesClass       t    = new TreesClass();
            TreesClass.trees pine = TreesClass.trees.pine;

            if (t.treesTest1(pine) != pine)
            {
                throw new Exception("treesTest 1 failed");
            }
            if (t.treesTest2(pine) != pine)
            {
                throw new Exception("treesTest 2 failed");
            }
            if (t.treesTest3(pine) != pine)
            {
                throw new Exception("treesTest 3 failed");
            }
            if (t.treesTest4(pine) != pine)
            {
                throw new Exception("treesTest 4 failed");
            }
            if (t.treesTest5(pine) != pine)
            {
                throw new Exception("treesTest 5 failed");
            }
            if (t.treesTest6(pine) != pine)
            {
                throw new Exception("treesTest 6 failed");
            }
            if (t.treesTest7(pine) != pine)
            {
                throw new Exception("treesTest 7 failed");
            }
            if (t.treesTest8(pine) != pine)
            {
                throw new Exception("treesTest 8 failed");
            }
            if (t.treesTest9(pine) != pine)
            {
                throw new Exception("treesTest 9 failed");
            }
            if (t.treesTestA(pine) != pine)
            {
                throw new Exception("treesTest A failed");
            }
            if (t.treesTestB(pine) != pine)
            {
                throw new Exception("treesTest B failed");
            }
            if (t.treesTestC(pine) != pine)
            {
                throw new Exception("treesTest C failed");
            }
            if (t.treesTestD(pine) != pine)
            {
                throw new Exception("treesTest D failed");
            }
            if (t.treesTestE(pine) != pine)
            {
                throw new Exception("treesTest E failed");
            }
            if (t.treesTestF(pine) != pine)
            {
                throw new Exception("treesTest F failed");
            }
            if (t.treesTestG(pine) != pine)
            {
                throw new Exception("treesTest G failed");
            }
            if (t.treesTestH(pine) != pine)
            {
                throw new Exception("treesTest H failed");
            }
            if (t.treesTestI(pine) != pine)
            {
                throw new Exception("treesTest I failed");
            }
            if (t.treesTestJ(pine) != pine)
            {
                throw new Exception("treesTest J failed");
            }
            if (t.treesTestK(pine) != pine)
            {
                throw new Exception("treesTest K failed");
            }
            if (t.treesTestL(pine) != pine)
            {
                throw new Exception("treesTest L failed");
            }
            if (t.treesTestM(pine) != pine)
            {
                throw new Exception("treesTest M failed");
            }
            if (t.treesTestN(pine) != pine)
            {
                throw new Exception("treesTest N failed");
            }
            if (t.treesTestO(pine) != pine)
            {
                throw new Exception("treesTest O failed");
            }

            if (enum_thorough.treesTest1(pine) != pine)
            {
                throw new Exception("treesTest Global 1 failed");
            }
            if (enum_thorough.treesTest2(pine) != pine)
            {
                throw new Exception("treesTest Global 2 failed");
            }
            if (enum_thorough.treesTest3(pine) != pine)
            {
                throw new Exception("treesTest Global 3 failed");
            }
            if (enum_thorough.treesTest4(pine) != pine)
            {
                throw new Exception("treesTest Global 4 failed");
            }
            if (enum_thorough.treesTest5(pine) != pine)
            {
                throw new Exception("treesTest Global 5 failed");
            }
            if (enum_thorough.treesTest6(pine) != pine)
            {
                throw new Exception("treesTest Global 6 failed");
            }
            if (enum_thorough.treesTest7(pine) != pine)
            {
                throw new Exception("treesTest Global 7 failed");
            }
            if (enum_thorough.treesTest8(pine) != pine)
            {
                throw new Exception("treesTest Global 8 failed");
            }
            if (enum_thorough.treesTest9(pine) != pine)
            {
                throw new Exception("treesTest Global 9 failed");
            }
            if (enum_thorough.treesTestA(pine) != pine)
            {
                throw new Exception("treesTest Global A failed");
            }
            if (enum_thorough.treesTestB(pine) != pine)
            {
                throw new Exception("treesTest Global B failed");
            }
            if (enum_thorough.treesTestC(pine) != pine)
            {
                throw new Exception("treesTest Global C failed");
            }
            if (enum_thorough.treesTestD(pine) != pine)
            {
                throw new Exception("treesTest Global D failed");
            }
            if (enum_thorough.treesTestE(pine) != pine)
            {
                throw new Exception("treesTest Global E failed");
            }
            if (enum_thorough.treesTestF(pine) != pine)
            {
                throw new Exception("treesTest Global F failed");
            }
            if (enum_thorough.treesTestG(pine) != pine)
            {
                throw new Exception("treesTest Global G failed");
            }
            if (enum_thorough.treesTestH(pine) != pine)
            {
                throw new Exception("treesTest Global H failed");
            }
            if (enum_thorough.treesTestI(pine) != pine)
            {
                throw new Exception("treesTest Global I failed");
            }
            if (enum_thorough.treesTestJ(pine) != pine)
            {
                throw new Exception("treesTest Global J failed");
            }
            if (enum_thorough.treesTestK(pine) != pine)
            {
                throw new Exception("treesTest Global K failed");
            }
            if (enum_thorough.treesTestL(pine) != pine)
            {
                throw new Exception("treesTest Global L failed");
            }
            if (enum_thorough.treesTestM(pine) != pine)
            {
                throw new Exception("treesTest Global M failed");
            }
//      if (enum_thorough.treesTestN(pine) != pine) throw new Exception("treesTest Global N failed");
            if (enum_thorough.treesTestO(pine) != pine)
            {
                throw new Exception("treesTest Global O failed");
            }
            if (enum_thorough.treesTestP(pine) != pine)
            {
                throw new Exception("treesTest Global P failed");
            }
            if (enum_thorough.treesTestQ(pine) != pine)
            {
                throw new Exception("treesTest Global Q failed");
            }
            if (enum_thorough.treesTestR(pine) != pine)
            {
                throw new Exception("treesTest Global R failed");
            }
        }
        {
            HairStruct      h      = new HairStruct();
            HairStruct.hair ginger = HairStruct.hair.ginger;

            if (h.hairTest1(ginger) != ginger)
            {
                throw new Exception("hairTest 1 failed");
            }
            if (h.hairTest2(ginger) != ginger)
            {
                throw new Exception("hairTest 2 failed");
            }
            if (h.hairTest3(ginger) != ginger)
            {
                throw new Exception("hairTest 3 failed");
            }
            if (h.hairTest4(ginger) != ginger)
            {
                throw new Exception("hairTest 4 failed");
            }
            if (h.hairTest5(ginger) != ginger)
            {
                throw new Exception("hairTest 5 failed");
            }
            if (h.hairTest6(ginger) != ginger)
            {
                throw new Exception("hairTest 6 failed");
            }
            if (h.hairTest7(ginger) != ginger)
            {
                throw new Exception("hairTest 7 failed");
            }
            if (h.hairTest8(ginger) != ginger)
            {
                throw new Exception("hairTest 8 failed");
            }
            if (h.hairTest9(ginger) != ginger)
            {
                throw new Exception("hairTest 9 failed");
            }
            if (h.hairTestA(ginger) != ginger)
            {
                throw new Exception("hairTest A failed");
            }
            if (h.hairTestB(ginger) != ginger)
            {
                throw new Exception("hairTest B failed");
            }

            colour red = colour.red;
            if (h.colourTest1(red) != red)
            {
                throw new Exception("colourTest HairStruct 1 failed");
            }
            if (h.colourTest2(red) != red)
            {
                throw new Exception("colourTest HairStruct 2 failed");
            }
            if (h.namedanonTest1(namedanon.NamedAnon2) != namedanon.NamedAnon2)
            {
                throw new Exception("namedanonTest HairStruct 1 failed");
            }
            if (h.namedanonspaceTest1(namedanonspace.NamedAnonSpace2) != namedanonspace.NamedAnonSpace2)
            {
                throw new Exception("namedanonspaceTest HairStruct 1 failed");
            }

            TreesClass.trees fir = TreesClass.trees.fir;
            if (h.treesGlobalTest1(fir) != fir)
            {
                throw new Exception("treesGlobalTest1 HairStruct 1 failed");
            }
            if (h.treesGlobalTest2(fir) != fir)
            {
                throw new Exception("treesGlobalTest1 HairStruct 2 failed");
            }
            if (h.treesGlobalTest3(fir) != fir)
            {
                throw new Exception("treesGlobalTest1 HairStruct 3 failed");
            }
            if (h.treesGlobalTest4(fir) != fir)
            {
                throw new Exception("treesGlobalTest1 HairStruct 4 failed");
            }
        }
        {
            HairStruct.hair blonde = HairStruct.hair.blonde;
            if (enum_thorough.hairTest1(blonde) != blonde)
            {
                throw new Exception("hairTest Global 1 failed");
            }
            if (enum_thorough.hairTest2(blonde) != blonde)
            {
                throw new Exception("hairTest Global 2 failed");
            }
            if (enum_thorough.hairTest3(blonde) != blonde)
            {
                throw new Exception("hairTest Global 3 failed");
            }
            if (enum_thorough.hairTest4(blonde) != blonde)
            {
                throw new Exception("hairTest Global 4 failed");
            }
            if (enum_thorough.hairTest5(blonde) != blonde)
            {
                throw new Exception("hairTest Global 5 failed");
            }
            if (enum_thorough.hairTest6(blonde) != blonde)
            {
                throw new Exception("hairTest Global 6 failed");
            }
            if (enum_thorough.hairTest7(blonde) != blonde)
            {
                throw new Exception("hairTest Global 7 failed");
            }
            if (enum_thorough.hairTest8(blonde) != blonde)
            {
                throw new Exception("hairTest Global 8 failed");
            }
            if (enum_thorough.hairTest9(blonde) != blonde)
            {
                throw new Exception("hairTest Global 9 failed");
            }
            if (enum_thorough.hairTestA(blonde) != blonde)
            {
                throw new Exception("hairTest Global A failed");
            }
            if (enum_thorough.hairTestB(blonde) != blonde)
            {
                throw new Exception("hairTest Global B failed");
            }
            if (enum_thorough.hairTestC(blonde) != blonde)
            {
                throw new Exception("hairTest Global C failed");
            }

            if (enum_thorough.hairTestA1(blonde) != blonde)
            {
                throw new Exception("hairTest Global A1 failed");
            }
            if (enum_thorough.hairTestA2(blonde) != blonde)
            {
                throw new Exception("hairTest Global A2 failed");
            }
            if (enum_thorough.hairTestA3(blonde) != blonde)
            {
                throw new Exception("hairTest Global A3 failed");
            }
            if (enum_thorough.hairTestA4(blonde) != blonde)
            {
                throw new Exception("hairTest Global A4 failed");
            }
            if (enum_thorough.hairTestA5(blonde) != blonde)
            {
                throw new Exception("hairTest Global A5 failed");
            }
            if (enum_thorough.hairTestA6(blonde) != blonde)
            {
                throw new Exception("hairTest Global A6 failed");
            }
            if (enum_thorough.hairTestA7(blonde) != blonde)
            {
                throw new Exception("hairTest Global A7 failed");
            }
            if (enum_thorough.hairTestA8(blonde) != blonde)
            {
                throw new Exception("hairTest Global A8 failed");
            }
            if (enum_thorough.hairTestA9(blonde) != blonde)
            {
                throw new Exception("hairTest Global A9 failed");
            }
            if (enum_thorough.hairTestAA(blonde) != blonde)
            {
                throw new Exception("hairTest Global AA failed");
            }
            if (enum_thorough.hairTestAB(blonde) != blonde)
            {
                throw new Exception("hairTest Global AB failed");
            }
            if (enum_thorough.hairTestAC(blonde) != blonde)
            {
                throw new Exception("hairTest Global AC failed");
            }

            if (enum_thorough.hairTestB1(blonde) != blonde)
            {
                throw new Exception("hairTest Global B1 failed");
            }
            if (enum_thorough.hairTestB2(blonde) != blonde)
            {
                throw new Exception("hairTest Global B2 failed");
            }
            if (enum_thorough.hairTestB3(blonde) != blonde)
            {
                throw new Exception("hairTest Global B3 failed");
            }
            if (enum_thorough.hairTestB4(blonde) != blonde)
            {
                throw new Exception("hairTest Global B4 failed");
            }
            if (enum_thorough.hairTestB5(blonde) != blonde)
            {
                throw new Exception("hairTest Global B5 failed");
            }
            if (enum_thorough.hairTestB6(blonde) != blonde)
            {
                throw new Exception("hairTest Global B6 failed");
            }
            if (enum_thorough.hairTestB7(blonde) != blonde)
            {
                throw new Exception("hairTest Global B7 failed");
            }
            if (enum_thorough.hairTestB8(blonde) != blonde)
            {
                throw new Exception("hairTest Global B8 failed");
            }
            if (enum_thorough.hairTestB9(blonde) != blonde)
            {
                throw new Exception("hairTest Global B9 failed");
            }
            if (enum_thorough.hairTestBA(blonde) != blonde)
            {
                throw new Exception("hairTest Global BA failed");
            }
            if (enum_thorough.hairTestBB(blonde) != blonde)
            {
                throw new Exception("hairTest Global BB failed");
            }
            if (enum_thorough.hairTestBC(blonde) != blonde)
            {
                throw new Exception("hairTest Global BC failed");
            }

            if (enum_thorough.hairTestC1(blonde) != blonde)
            {
                throw new Exception("hairTest Global C1 failed");
            }
            if (enum_thorough.hairTestC2(blonde) != blonde)
            {
                throw new Exception("hairTest Global C2 failed");
            }
            if (enum_thorough.hairTestC3(blonde) != blonde)
            {
                throw new Exception("hairTest Global C3 failed");
            }
            if (enum_thorough.hairTestC4(blonde) != blonde)
            {
                throw new Exception("hairTest Global C4 failed");
            }
            if (enum_thorough.hairTestC5(blonde) != blonde)
            {
                throw new Exception("hairTest Global C5 failed");
            }
            if (enum_thorough.hairTestC6(blonde) != blonde)
            {
                throw new Exception("hairTest Global C6 failed");
            }
            if (enum_thorough.hairTestC7(blonde) != blonde)
            {
                throw new Exception("hairTest Global C7 failed");
            }
            if (enum_thorough.hairTestC8(blonde) != blonde)
            {
                throw new Exception("hairTest Global C8 failed");
            }
            if (enum_thorough.hairTestC9(blonde) != blonde)
            {
                throw new Exception("hairTest Global C9 failed");
            }
            if (enum_thorough.hairTestCA(blonde) != blonde)
            {
                throw new Exception("hairTest Global CA failed");
            }
            if (enum_thorough.hairTestCB(blonde) != blonde)
            {
                throw new Exception("hairTest Global CB failed");
            }
            if (enum_thorough.hairTestCC(blonde) != blonde)
            {
                throw new Exception("hairTest Global CC failed");
            }
        }
        {
            FirStruct       f      = new FirStruct();
            HairStruct.hair blonde = HairStruct.hair.blonde;

            if (f.hairTestFir1(blonde) != blonde)
            {
                throw new Exception("hairTestFir 1 failed");
            }
            if (f.hairTestFir2(blonde) != blonde)
            {
                throw new Exception("hairTestFir 2 failed");
            }
            if (f.hairTestFir3(blonde) != blonde)
            {
                throw new Exception("hairTestFir 3 failed");
            }
            if (f.hairTestFir4(blonde) != blonde)
            {
                throw new Exception("hairTestFir 4 failed");
            }
            if (f.hairTestFir5(blonde) != blonde)
            {
                throw new Exception("hairTestFir 5 failed");
            }
            if (f.hairTestFir6(blonde) != blonde)
            {
                throw new Exception("hairTestFir 6 failed");
            }
            if (f.hairTestFir7(blonde) != blonde)
            {
                throw new Exception("hairTestFir 7 failed");
            }
            if (f.hairTestFir8(blonde) != blonde)
            {
                throw new Exception("hairTestFir 8 failed");
            }
            if (f.hairTestFir9(blonde) != blonde)
            {
                throw new Exception("hairTestFir 9 failed");
            }
            if (f.hairTestFirA(blonde) != blonde)
            {
                throw new Exception("hairTestFir A failed");
            }
        }
        {
            enum_thorough.GlobalInstance = enum_thorough.globalinstance2;
            if (enum_thorough.GlobalInstance != enum_thorough.globalinstance2)
            {
                throw new Exception("GlobalInstance 1 failed");
            }

            Instances i = new Instances();
            i.MemberInstance = Instances.memberinstance3;
            if (i.MemberInstance != Instances.memberinstance3)
            {
                throw new Exception("MemberInstance 1 failed");
            }
        }
        // ignore enum item tests start
        {
            if ((int)enum_thorough.ignoreATest(IgnoreTest.IgnoreA.ignoreA_zero) != 0)
            {
                throw new Exception("ignoreATest 0 failed");
            }
            if ((int)enum_thorough.ignoreATest(IgnoreTest.IgnoreA.ignoreA_three) != 3)
            {
                throw new Exception("ignoreATest 3 failed");
            }
            if ((int)enum_thorough.ignoreATest(IgnoreTest.IgnoreA.ignoreA_ten) != 10)
            {
                throw new Exception("ignoreATest 10 failed");
            }
            if ((int)enum_thorough.ignoreATest(IgnoreTest.IgnoreA.ignoreA_eleven) != 11)
            {
                throw new Exception("ignoreATest 11 failed");
            }
            if ((int)enum_thorough.ignoreATest(IgnoreTest.IgnoreA.ignoreA_thirteen) != 13)
            {
                throw new Exception("ignoreATest 13 failed");
            }
            if ((int)enum_thorough.ignoreATest(IgnoreTest.IgnoreA.ignoreA_fourteen) != 14)
            {
                throw new Exception("ignoreATest 14 failed");
            }
            if ((int)enum_thorough.ignoreATest(IgnoreTest.IgnoreA.ignoreA_twenty) != 20)
            {
                throw new Exception("ignoreATest 20 failed");
            }
            if ((int)enum_thorough.ignoreATest(IgnoreTest.IgnoreA.ignoreA_thirty) != 30)
            {
                throw new Exception("ignoreATest 30 failed");
            }
            if ((int)enum_thorough.ignoreATest(IgnoreTest.IgnoreA.ignoreA_thirty_two) != 32)
            {
                throw new Exception("ignoreATest 32 failed");
            }
            if ((int)enum_thorough.ignoreATest(IgnoreTest.IgnoreA.ignoreA_thirty_three) != 33)
            {
                throw new Exception("ignoreATest 33 failed");
            }
        }
        {
            if ((int)enum_thorough.ignoreBTest(IgnoreTest.IgnoreB.ignoreB_eleven) != 11)
            {
                throw new Exception("ignoreBTest 11 failed");
            }
            if ((int)enum_thorough.ignoreBTest(IgnoreTest.IgnoreB.ignoreB_twelve) != 12)
            {
                throw new Exception("ignoreBTest 12 failed");
            }
            if ((int)enum_thorough.ignoreBTest(IgnoreTest.IgnoreB.ignoreB_thirty_one) != 31)
            {
                throw new Exception("ignoreBTest 31 failed");
            }
            if ((int)enum_thorough.ignoreBTest(IgnoreTest.IgnoreB.ignoreB_thirty_two) != 32)
            {
                throw new Exception("ignoreBTest 32 failed");
            }
            if ((int)enum_thorough.ignoreBTest(IgnoreTest.IgnoreB.ignoreB_forty_one) != 41)
            {
                throw new Exception("ignoreBTest 41 failed");
            }
            if ((int)enum_thorough.ignoreBTest(IgnoreTest.IgnoreB.ignoreB_forty_two) != 42)
            {
                throw new Exception("ignoreBTest 42 failed");
            }
        }
        {
            if ((int)enum_thorough.ignoreCTest(IgnoreTest.IgnoreC.ignoreC_ten) != 10)
            {
                throw new Exception("ignoreCTest 10 failed");
            }
            if ((int)enum_thorough.ignoreCTest(IgnoreTest.IgnoreC.ignoreC_twelve) != 12)
            {
                throw new Exception("ignoreCTest 12 failed");
            }
            if ((int)enum_thorough.ignoreCTest(IgnoreTest.IgnoreC.ignoreC_thirty) != 30)
            {
                throw new Exception("ignoreCTest 30 failed");
            }
            if ((int)enum_thorough.ignoreCTest(IgnoreTest.IgnoreC.ignoreC_thirty_two) != 32)
            {
                throw new Exception("ignoreCTest 32 failed");
            }
            if ((int)enum_thorough.ignoreCTest(IgnoreTest.IgnoreC.ignoreC_forty) != 40)
            {
                throw new Exception("ignoreCTest 40 failed");
            }
            if ((int)enum_thorough.ignoreCTest(IgnoreTest.IgnoreC.ignoreC_forty_two) != 42)
            {
                throw new Exception("ignoreCTest 42 failed");
            }
        }
        {
            if ((int)enum_thorough.ignoreDTest(IgnoreTest.IgnoreD.ignoreD_twenty_one) != 21)
            {
                throw new Exception("ignoreDTest 21 failed");
            }
            if ((int)enum_thorough.ignoreDTest(IgnoreTest.IgnoreD.ignoreD_twenty_two) != 22)
            {
                throw new Exception("ignoreDTest 22 failed");
            }
        }
        {
            if ((int)enum_thorough.ignoreETest(IgnoreTest.IgnoreE.ignoreE_zero) != 0)
            {
                throw new Exception("ignoreETest 0 failed");
            }
            if ((int)enum_thorough.ignoreETest(IgnoreTest.IgnoreE.ignoreE_twenty_one) != 21)
            {
                throw new Exception("ignoreETest 21 failed");
            }
            if ((int)enum_thorough.ignoreETest(IgnoreTest.IgnoreE.ignoreE_twenty_two) != 22)
            {
                throw new Exception("ignoreETest 22 failed");
            }
        }
        // ignore enum item tests end
        {
            if ((int)enum_thorough.repeatTest(repeat.one) != 1)
            {
                throw new Exception("repeatTest 1 failed");
            }
            if ((int)enum_thorough.repeatTest(repeat.initial) != 1)
            {
                throw new Exception("repeatTest 2 failed");
            }
            if ((int)enum_thorough.repeatTest(repeat.two) != 2)
            {
                throw new Exception("repeatTest 3 failed");
            }
            if ((int)enum_thorough.repeatTest(repeat.three) != 3)
            {
                throw new Exception("repeatTest 4 failed");
            }
            if ((int)enum_thorough.repeatTest(repeat.llast) != 3)
            {
                throw new Exception("repeatTest 5 failed");
            }
            if ((int)enum_thorough.repeatTest(repeat.end) != 3)
            {
                throw new Exception("repeatTest 6 failed");
            }
        }
    }
    static void Main()
    {
        {
          // Anonymous enums
          int i = enum_thorough.AnonEnum1;
          if (enum_thorough.ReallyAnInteger != 200) throw new Exception("Test Anon 1 failed");
          i += enum_thorough.AnonSpaceEnum1;
          i += AnonStruct.AnonStructEnum1;
        }
        {
          colour red = colour.red;
          enum_thorough.colourTest1(red);
          enum_thorough.colourTest2(red);
          enum_thorough.colourTest3(red);
          enum_thorough.colourTest4(red);
          enum_thorough.myColour = red;
        }
        {
          SpeedClass s = new SpeedClass();
          SpeedClass.speed speed = SpeedClass.speed.slow;
          if (s.speedTest1(speed) != speed) throw new Exception("speedTest 1 failed");
          if (s.speedTest2(speed) != speed) throw new Exception("speedTest 2 failed");
          if (s.speedTest3(speed) != speed) throw new Exception("speedTest 3 failed");
          if (s.speedTest4(speed) != speed) throw new Exception("speedTest 4 failed");
          if (s.speedTest5(speed) != speed) throw new Exception("speedTest 5 failed");
          if (s.speedTest6(speed) != speed) throw new Exception("speedTest 6 failed");
          if (s.speedTest7(speed) != speed) throw new Exception("speedTest 7 failed");
          if (s.speedTest8(speed) != speed) throw new Exception("speedTest 8 failed");

          if (enum_thorough.speedTest1(speed) != speed) throw new Exception("speedTest Global 1 failed");
          if (enum_thorough.speedTest2(speed) != speed) throw new Exception("speedTest Global 2 failed");
          if (enum_thorough.speedTest3(speed) != speed) throw new Exception("speedTest Global 3 failed");
          if (enum_thorough.speedTest4(speed) != speed) throw new Exception("speedTest Global 4 failed");
          if (enum_thorough.speedTest5(speed) != speed) throw new Exception("speedTest Global 5 failed");
        }
        {
          SpeedClass s = new SpeedClass();
          SpeedClass.speed slow = SpeedClass.speed.slow;
          SpeedClass.speed lightning = SpeedClass.speed.lightning;

          if (s.mySpeedtd1 != slow) throw new Exception("mySpeedtd1 1 failed");
          if ((int)s.mySpeedtd1 != 10) throw new Exception("mySpeedtd1 2 failed");

          s.mySpeedtd1 = lightning;
          if (s.mySpeedtd1 != lightning) throw new Exception("mySpeedtd1 3 failed");
          if ((int)s.mySpeedtd1 != 31) throw new Exception("mySpeedtd1 4 failed");
        }
        {
          if (enum_thorough.namedanonTest1(namedanon.NamedAnon2) != namedanon.NamedAnon2) throw new Exception("namedanonTest 1 failed");
        }
        {
          twonames val = twonames.TwoNames2;
          if (enum_thorough.twonamesTest1(val) != val) throw new Exception("twonamesTest 1 failed");
          if (enum_thorough.twonamesTest2(val) != val) throw new Exception("twonamesTest 2 failed");
          if (enum_thorough.twonamesTest3(val) != val) throw new Exception("twonamesTest 3 failed");
        }
        {
          TwoNamesStruct t = new TwoNamesStruct();
          TwoNamesStruct.twonames val = TwoNamesStruct.twonames.TwoNamesStruct1;
          if (t.twonamesTest1(val) != val) throw new Exception("twonamesTest 1 failed");
          if (t.twonamesTest2(val) != val) throw new Exception("twonamesTest 2 failed");
          if (t.twonamesTest3(val) != val) throw new Exception("twonamesTest 3 failed");
        }
        {
          namedanonspace val = namedanonspace.NamedAnonSpace2;
          if (enum_thorough.namedanonspaceTest1(val) != val) throw new Exception("namedanonspaceTest 1 failed");
          if (enum_thorough.namedanonspaceTest2(val) != val) throw new Exception("namedanonspaceTest 2 failed");
          if (enum_thorough.namedanonspaceTest3(val) != val) throw new Exception("namedanonspaceTest 3 failed");
          if (enum_thorough.namedanonspaceTest4(val) != val) throw new Exception("namedanonspaceTest 4 failed");
        }
        {
          TemplateClassInt t = new TemplateClassInt();
          TemplateClassInt.scientists galileo = TemplateClassInt.scientists.galileo;

          if (t.scientistsTest1(galileo) != galileo) throw new Exception("scientistsTest 1 failed");
          if (t.scientistsTest2(galileo) != galileo) throw new Exception("scientistsTest 2 failed");
          if (t.scientistsTest3(galileo) != galileo) throw new Exception("scientistsTest 3 failed");
          if (t.scientistsTest4(galileo) != galileo) throw new Exception("scientistsTest 4 failed");
          if (t.scientistsTest5(galileo) != galileo) throw new Exception("scientistsTest 5 failed");
          if (t.scientistsTest6(galileo) != galileo) throw new Exception("scientistsTest 6 failed");
          if (t.scientistsTest7(galileo) != galileo) throw new Exception("scientistsTest 7 failed");
          if (t.scientistsTest8(galileo) != galileo) throw new Exception("scientistsTest 8 failed");
          if (t.scientistsTest9(galileo) != galileo) throw new Exception("scientistsTest 9 failed");
        //      if (t.scientistsTestA(galileo) != galileo) throw new Exception("scientistsTest A failed");
          if (t.scientistsTestB(galileo) != galileo) throw new Exception("scientistsTest B failed");
        //      if (t.scientistsTestC(galileo) != galileo) throw new Exception("scientistsTest C failed");
          if (t.scientistsTestD(galileo) != galileo) throw new Exception("scientistsTest D failed");
          if (t.scientistsTestE(galileo) != galileo) throw new Exception("scientistsTest E failed");
          if (t.scientistsTestF(galileo) != galileo) throw new Exception("scientistsTest F failed");
          if (t.scientistsTestG(galileo) != galileo) throw new Exception("scientistsTest G failed");
          if (t.scientistsTestH(galileo) != galileo) throw new Exception("scientistsTest H failed");
          if (t.scientistsTestI(galileo) != galileo) throw new Exception("scientistsTest I failed");
          if (t.scientistsTestJ(galileo) != galileo) throw new Exception("scientistsTest J failed");

          if (enum_thorough.scientistsTest1(galileo) != galileo) throw new Exception("scientistsTest Global 1 failed");
          if (enum_thorough.scientistsTest2(galileo) != galileo) throw new Exception("scientistsTest Global 2 failed");
          if (enum_thorough.scientistsTest3(galileo) != galileo) throw new Exception("scientistsTest Global 3 failed");
          if (enum_thorough.scientistsTest4(galileo) != galileo) throw new Exception("scientistsTest Global 4 failed");
          if (enum_thorough.scientistsTest5(galileo) != galileo) throw new Exception("scientistsTest Global 5 failed");
          if (enum_thorough.scientistsTest6(galileo) != galileo) throw new Exception("scientistsTest Global 6 failed");
          if (enum_thorough.scientistsTest7(galileo) != galileo) throw new Exception("scientistsTest Global 7 failed");
          if (enum_thorough.scientistsTest8(galileo) != galileo) throw new Exception("scientistsTest Global 8 failed");
        }
        {
          TClassInt t = new TClassInt();
          TClassInt.scientists bell = TClassInt.scientists.bell;
          TemplateClassInt.scientists galileo = TemplateClassInt.scientists.galileo;
          if (t.scientistsNameTest1(bell) != bell) throw new Exception("scientistsNameTest 1 failed");
          if (t.scientistsNameTest2(bell) != bell) throw new Exception("scientistsNameTest 2 failed");
          if (t.scientistsNameTest3(bell) != bell) throw new Exception("scientistsNameTest 3 failed");
          if (t.scientistsNameTest4(bell) != bell) throw new Exception("scientistsNameTest 4 failed");
          if (t.scientistsNameTest5(bell) != bell) throw new Exception("scientistsNameTest 5 failed");
          if (t.scientistsNameTest6(bell) != bell) throw new Exception("scientistsNameTest 6 failed");
          if (t.scientistsNameTest7(bell) != bell) throw new Exception("scientistsNameTest 7 failed");
          if (t.scientistsNameTest8(bell) != bell) throw new Exception("scientistsNameTest 8 failed");
          if (t.scientistsNameTest9(bell) != bell) throw new Exception("scientistsNameTest 9 failed");
        //      if (t.scientistsNameTestA(bell) != bell) throw new Exception("scientistsNameTest A failed");
          if (t.scientistsNameTestB(bell) != bell) throw new Exception("scientistsNameTest B failed");
        //      if (t.scientistsNameTestC(bell) != bell) throw new Exception("scientistsNameTest C failed");
          if (t.scientistsNameTestD(bell) != bell) throw new Exception("scientistsNameTest D failed");
          if (t.scientistsNameTestE(bell) != bell) throw new Exception("scientistsNameTest E failed");
          if (t.scientistsNameTestF(bell) != bell) throw new Exception("scientistsNameTest F failed");
          if (t.scientistsNameTestG(bell) != bell) throw new Exception("scientistsNameTest G failed");
          if (t.scientistsNameTestH(bell) != bell) throw new Exception("scientistsNameTest H failed");
          if (t.scientistsNameTestI(bell) != bell) throw new Exception("scientistsNameTest I failed");

          if (t.scientistsNameSpaceTest1(bell) != bell) throw new Exception("scientistsNameSpaceTest 1 failed");
          if (t.scientistsNameSpaceTest2(bell) != bell) throw new Exception("scientistsNameSpaceTest 2 failed");
          if (t.scientistsNameSpaceTest3(bell) != bell) throw new Exception("scientistsNameSpaceTest 3 failed");
          if (t.scientistsNameSpaceTest4(bell) != bell) throw new Exception("scientistsNameSpaceTest 4 failed");
          if (t.scientistsNameSpaceTest5(bell) != bell) throw new Exception("scientistsNameSpaceTest 5 failed");
          if (t.scientistsNameSpaceTest6(bell) != bell) throw new Exception("scientistsNameSpaceTest 6 failed");
          if (t.scientistsNameSpaceTest7(bell) != bell) throw new Exception("scientistsNameSpaceTest 7 failed");

          if (t.scientistsOtherTest1(galileo) != galileo) throw new Exception("scientistsOtherTest 1 failed");
          if (t.scientistsOtherTest2(galileo) != galileo) throw new Exception("scientistsOtherTest 2 failed");
          if (t.scientistsOtherTest3(galileo) != galileo) throw new Exception("scientistsOtherTest 3 failed");
          if (t.scientistsOtherTest4(galileo) != galileo) throw new Exception("scientistsOtherTest 4 failed");
          if (t.scientistsOtherTest5(galileo) != galileo) throw new Exception("scientistsOtherTest 5 failed");
          if (t.scientistsOtherTest6(galileo) != galileo) throw new Exception("scientistsOtherTest 6 failed");
          if (t.scientistsOtherTest7(galileo) != galileo) throw new Exception("scientistsOtherTest 7 failed");

          if (enum_thorough.scientistsNameTest1(bell) != bell) throw new Exception("scientistsNameTest Global 1 failed");
          if (enum_thorough.scientistsNameTest2(bell) != bell) throw new Exception("scientistsNameTest Global 2 failed");
          if (enum_thorough.scientistsNameTest3(bell) != bell) throw new Exception("scientistsNameTest Global 3 failed");
          if (enum_thorough.scientistsNameTest4(bell) != bell) throw new Exception("scientistsNameTest Global 4 failed");
          if (enum_thorough.scientistsNameTest5(bell) != bell) throw new Exception("scientistsNameTest Global 5 failed");
          if (enum_thorough.scientistsNameTest6(bell) != bell) throw new Exception("scientistsNameTest Global 6 failed");
          if (enum_thorough.scientistsNameTest7(bell) != bell) throw new Exception("scientistsNameTest Global 7 failed");

          if (enum_thorough.scientistsNameSpaceTest1(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 1 failed");
          if (enum_thorough.scientistsNameSpaceTest2(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 2 failed");
          if (enum_thorough.scientistsNameSpaceTest3(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 3 failed");
          if (enum_thorough.scientistsNameSpaceTest4(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 4 failed");
          if (enum_thorough.scientistsNameSpaceTest5(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 5 failed");
          if (enum_thorough.scientistsNameSpaceTest6(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 6 failed");
          if (enum_thorough.scientistsNameSpaceTest7(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 7 failed");

          if (enum_thorough.scientistsNameSpaceTest8(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 8 failed");
          if (enum_thorough.scientistsNameSpaceTest9(bell) != bell) throw new Exception("scientistsNameSpaceTest Global 9 failed");
          if (enum_thorough.scientistsNameSpaceTestA(bell) != bell) throw new Exception("scientistsNameSpaceTest Global A failed");
          if (enum_thorough.scientistsNameSpaceTestB(bell) != bell) throw new Exception("scientistsNameSpaceTest Global B failed");
          if (enum_thorough.scientistsNameSpaceTestC(bell) != bell) throw new Exception("scientistsNameSpaceTest Global C failed");
          if (enum_thorough.scientistsNameSpaceTestD(bell) != bell) throw new Exception("scientistsNameSpaceTest Global D failed");
          if (enum_thorough.scientistsNameSpaceTestE(bell) != bell) throw new Exception("scientistsNameSpaceTest Global E failed");

          if (enum_thorough.scientistsNameSpaceTestF(bell) != bell) throw new Exception("scientistsNameSpaceTest Global F failed");
          if (enum_thorough.scientistsNameSpaceTestG(bell) != bell) throw new Exception("scientistsNameSpaceTest Global G failed");
          if (enum_thorough.scientistsNameSpaceTestH(bell) != bell) throw new Exception("scientistsNameSpaceTest Global H failed");
          if (enum_thorough.scientistsNameSpaceTestI(bell) != bell) throw new Exception("scientistsNameSpaceTest Global I failed");
          if (enum_thorough.scientistsNameSpaceTestJ(bell) != bell) throw new Exception("scientistsNameSpaceTest Global J failed");
          if (enum_thorough.scientistsNameSpaceTestK(bell) != bell) throw new Exception("scientistsNameSpaceTest Global K failed");
          if (enum_thorough.scientistsNameSpaceTestL(bell) != bell) throw new Exception("scientistsNameSpaceTest Global L failed");
        }
        {
          newname val = newname.argh;
          if (enum_thorough.renameTest1(val) != val) throw new Exception("renameTest Global 1 failed");
          if (enum_thorough.renameTest2(val) != val) throw new Exception("renameTest Global 2 failed");
        }
        {
          NewNameStruct n = new NewNameStruct();
          if (n.renameTest1(NewNameStruct.enumeration.bang) != NewNameStruct.enumeration.bang) throw new Exception("renameTest 1 failed");
          if (n.renameTest2(NewNameStruct.enumeration.bang) != NewNameStruct.enumeration.bang) throw new Exception("renameTest 2 failed");
          if (n.renameTest3(NewNameStruct.simplerenamed.simple1) != NewNameStruct.simplerenamed.simple1) throw new Exception("renameTest 3 failed");
          if (n.renameTest4(NewNameStruct.doublenamerenamed.doublename1) != NewNameStruct.doublenamerenamed.doublename1) throw new Exception("renameTest 4 failed");
          if (n.renameTest5(NewNameStruct.doublenamerenamed.doublename1) != NewNameStruct.doublenamerenamed.doublename1) throw new Exception("renameTest 5 failed");
          if (n.renameTest6(NewNameStruct.singlenamerenamed.singlename1) != NewNameStruct.singlenamerenamed.singlename1) throw new Exception("renameTest 6 failed");
        }
        {
          if (enum_thorough.renameTest3(NewNameStruct.enumeration.bang) != NewNameStruct.enumeration.bang) throw new Exception("renameTest Global 3 failed");
          if (enum_thorough.renameTest4(NewNameStruct.simplerenamed.simple1) != NewNameStruct.simplerenamed.simple1) throw new Exception("renameTest Global 4 failed");
          if (enum_thorough.renameTest5(NewNameStruct.doublenamerenamed.doublename1) != NewNameStruct.doublenamerenamed.doublename1) throw new Exception("renameTest Global 5 failed");
          if (enum_thorough.renameTest6(NewNameStruct.doublenamerenamed.doublename1) != NewNameStruct.doublenamerenamed.doublename1) throw new Exception("renameTest Global 6 failed");
          if (enum_thorough.renameTest7(NewNameStruct.singlenamerenamed.singlename1) != NewNameStruct.singlenamerenamed.singlename1) throw new Exception("renameTest Global 7 failed");
        }
        {
          TreesClass t = new TreesClass();
          TreesClass.trees pine = TreesClass.trees.pine;

          if (t.treesTest1(pine) != pine) throw new Exception("treesTest 1 failed");
          if (t.treesTest2(pine) != pine) throw new Exception("treesTest 2 failed");
          if (t.treesTest3(pine) != pine) throw new Exception("treesTest 3 failed");
          if (t.treesTest4(pine) != pine) throw new Exception("treesTest 4 failed");
          if (t.treesTest5(pine) != pine) throw new Exception("treesTest 5 failed");
          if (t.treesTest6(pine) != pine) throw new Exception("treesTest 6 failed");
          if (t.treesTest7(pine) != pine) throw new Exception("treesTest 7 failed");
          if (t.treesTest8(pine) != pine) throw new Exception("treesTest 8 failed");
          if (t.treesTest9(pine) != pine) throw new Exception("treesTest 9 failed");
          if (t.treesTestA(pine) != pine) throw new Exception("treesTest A failed");
          if (t.treesTestB(pine) != pine) throw new Exception("treesTest B failed");
          if (t.treesTestC(pine) != pine) throw new Exception("treesTest C failed");
          if (t.treesTestD(pine) != pine) throw new Exception("treesTest D failed");
          if (t.treesTestE(pine) != pine) throw new Exception("treesTest E failed");
          if (t.treesTestF(pine) != pine) throw new Exception("treesTest F failed");
          if (t.treesTestG(pine) != pine) throw new Exception("treesTest G failed");
          if (t.treesTestH(pine) != pine) throw new Exception("treesTest H failed");
          if (t.treesTestI(pine) != pine) throw new Exception("treesTest I failed");
          if (t.treesTestJ(pine) != pine) throw new Exception("treesTest J failed");
          if (t.treesTestK(pine) != pine) throw new Exception("treesTest K failed");
          if (t.treesTestL(pine) != pine) throw new Exception("treesTest L failed");
          if (t.treesTestM(pine) != pine) throw new Exception("treesTest M failed");
          if (t.treesTestN(pine) != pine) throw new Exception("treesTest N failed");
          if (t.treesTestO(pine) != pine) throw new Exception("treesTest O failed");

          if (enum_thorough.treesTest1(pine) != pine) throw new Exception("treesTest Global 1 failed");
          if (enum_thorough.treesTest2(pine) != pine) throw new Exception("treesTest Global 2 failed");
          if (enum_thorough.treesTest3(pine) != pine) throw new Exception("treesTest Global 3 failed");
          if (enum_thorough.treesTest4(pine) != pine) throw new Exception("treesTest Global 4 failed");
          if (enum_thorough.treesTest5(pine) != pine) throw new Exception("treesTest Global 5 failed");
          if (enum_thorough.treesTest6(pine) != pine) throw new Exception("treesTest Global 6 failed");
          if (enum_thorough.treesTest7(pine) != pine) throw new Exception("treesTest Global 7 failed");
          if (enum_thorough.treesTest8(pine) != pine) throw new Exception("treesTest Global 8 failed");
          if (enum_thorough.treesTest9(pine) != pine) throw new Exception("treesTest Global 9 failed");
          if (enum_thorough.treesTestA(pine) != pine) throw new Exception("treesTest Global A failed");
          if (enum_thorough.treesTestB(pine) != pine) throw new Exception("treesTest Global B failed");
          if (enum_thorough.treesTestC(pine) != pine) throw new Exception("treesTest Global C failed");
          if (enum_thorough.treesTestD(pine) != pine) throw new Exception("treesTest Global D failed");
          if (enum_thorough.treesTestE(pine) != pine) throw new Exception("treesTest Global E failed");
          if (enum_thorough.treesTestF(pine) != pine) throw new Exception("treesTest Global F failed");
          if (enum_thorough.treesTestG(pine) != pine) throw new Exception("treesTest Global G failed");
          if (enum_thorough.treesTestH(pine) != pine) throw new Exception("treesTest Global H failed");
          if (enum_thorough.treesTestI(pine) != pine) throw new Exception("treesTest Global I failed");
          if (enum_thorough.treesTestJ(pine) != pine) throw new Exception("treesTest Global J failed");
          if (enum_thorough.treesTestK(pine) != pine) throw new Exception("treesTest Global K failed");
          if (enum_thorough.treesTestL(pine) != pine) throw new Exception("treesTest Global L failed");
          if (enum_thorough.treesTestM(pine) != pine) throw new Exception("treesTest Global M failed");
        //      if (enum_thorough.treesTestN(pine) != pine) throw new Exception("treesTest Global N failed");
          if (enum_thorough.treesTestO(pine) != pine) throw new Exception("treesTest Global O failed");
          if (enum_thorough.treesTestP(pine) != pine) throw new Exception("treesTest Global P failed");
          if (enum_thorough.treesTestQ(pine) != pine) throw new Exception("treesTest Global Q failed");
          if (enum_thorough.treesTestR(pine) != pine) throw new Exception("treesTest Global R failed");
        }
        {
          HairStruct h = new HairStruct();
          HairStruct.hair ginger = HairStruct.hair.ginger;

          if (h.hairTest1(ginger) != ginger) throw new Exception("hairTest 1 failed");
          if (h.hairTest2(ginger) != ginger) throw new Exception("hairTest 2 failed");
          if (h.hairTest3(ginger) != ginger) throw new Exception("hairTest 3 failed");
          if (h.hairTest4(ginger) != ginger) throw new Exception("hairTest 4 failed");
          if (h.hairTest5(ginger) != ginger) throw new Exception("hairTest 5 failed");
          if (h.hairTest6(ginger) != ginger) throw new Exception("hairTest 6 failed");
          if (h.hairTest7(ginger) != ginger) throw new Exception("hairTest 7 failed");
          if (h.hairTest8(ginger) != ginger) throw new Exception("hairTest 8 failed");
          if (h.hairTest9(ginger) != ginger) throw new Exception("hairTest 9 failed");
          if (h.hairTestA(ginger) != ginger) throw new Exception("hairTest A failed");
          if (h.hairTestB(ginger) != ginger) throw new Exception("hairTest B failed");

          colour red = colour.red;
          if (h.colourTest1(red) != red) throw new Exception("colourTest HairStruct 1 failed");
          if (h.colourTest2(red) != red) throw new Exception("colourTest HairStruct 2 failed");
          if (h.namedanonTest1(namedanon.NamedAnon2) != namedanon.NamedAnon2) throw new Exception("namedanonTest HairStruct 1 failed");
          if (h.namedanonspaceTest1(namedanonspace.NamedAnonSpace2) != namedanonspace.NamedAnonSpace2) throw new Exception("namedanonspaceTest HairStruct 1 failed");

          TreesClass.trees fir = TreesClass.trees.fir;
          if (h.treesGlobalTest1(fir) != fir) throw new Exception("treesGlobalTest1 HairStruct 1 failed");
          if (h.treesGlobalTest2(fir) != fir) throw new Exception("treesGlobalTest1 HairStruct 2 failed");
          if (h.treesGlobalTest3(fir) != fir) throw new Exception("treesGlobalTest1 HairStruct 3 failed");
          if (h.treesGlobalTest4(fir) != fir) throw new Exception("treesGlobalTest1 HairStruct 4 failed");
        }
        {
          HairStruct.hair blonde = HairStruct.hair.blonde;
          if (enum_thorough.hairTest1(blonde) != blonde) throw new Exception("hairTest Global 1 failed");
          if (enum_thorough.hairTest2(blonde) != blonde) throw new Exception("hairTest Global 2 failed");
          if (enum_thorough.hairTest3(blonde) != blonde) throw new Exception("hairTest Global 3 failed");
          if (enum_thorough.hairTest4(blonde) != blonde) throw new Exception("hairTest Global 4 failed");
          if (enum_thorough.hairTest5(blonde) != blonde) throw new Exception("hairTest Global 5 failed");
          if (enum_thorough.hairTest6(blonde) != blonde) throw new Exception("hairTest Global 6 failed");
          if (enum_thorough.hairTest7(blonde) != blonde) throw new Exception("hairTest Global 7 failed");
          if (enum_thorough.hairTest8(blonde) != blonde) throw new Exception("hairTest Global 8 failed");
          if (enum_thorough.hairTest9(blonde) != blonde) throw new Exception("hairTest Global 9 failed");
          if (enum_thorough.hairTestA(blonde) != blonde) throw new Exception("hairTest Global A failed");
          if (enum_thorough.hairTestB(blonde) != blonde) throw new Exception("hairTest Global B failed");
          if (enum_thorough.hairTestC(blonde) != blonde) throw new Exception("hairTest Global C failed");

          if (enum_thorough.hairTestA1(blonde) != blonde) throw new Exception("hairTest Global A1 failed");
          if (enum_thorough.hairTestA2(blonde) != blonde) throw new Exception("hairTest Global A2 failed");
          if (enum_thorough.hairTestA3(blonde) != blonde) throw new Exception("hairTest Global A3 failed");
          if (enum_thorough.hairTestA4(blonde) != blonde) throw new Exception("hairTest Global A4 failed");
          if (enum_thorough.hairTestA5(blonde) != blonde) throw new Exception("hairTest Global A5 failed");
          if (enum_thorough.hairTestA6(blonde) != blonde) throw new Exception("hairTest Global A6 failed");
          if (enum_thorough.hairTestA7(blonde) != blonde) throw new Exception("hairTest Global A7 failed");
          if (enum_thorough.hairTestA8(blonde) != blonde) throw new Exception("hairTest Global A8 failed");
          if (enum_thorough.hairTestA9(blonde) != blonde) throw new Exception("hairTest Global A9 failed");
          if (enum_thorough.hairTestAA(blonde) != blonde) throw new Exception("hairTest Global AA failed");
          if (enum_thorough.hairTestAB(blonde) != blonde) throw new Exception("hairTest Global AB failed");
          if (enum_thorough.hairTestAC(blonde) != blonde) throw new Exception("hairTest Global AC failed");

          if (enum_thorough.hairTestB1(blonde) != blonde) throw new Exception("hairTest Global B1 failed");
          if (enum_thorough.hairTestB2(blonde) != blonde) throw new Exception("hairTest Global B2 failed");
          if (enum_thorough.hairTestB3(blonde) != blonde) throw new Exception("hairTest Global B3 failed");
          if (enum_thorough.hairTestB4(blonde) != blonde) throw new Exception("hairTest Global B4 failed");
          if (enum_thorough.hairTestB5(blonde) != blonde) throw new Exception("hairTest Global B5 failed");
          if (enum_thorough.hairTestB6(blonde) != blonde) throw new Exception("hairTest Global B6 failed");
          if (enum_thorough.hairTestB7(blonde) != blonde) throw new Exception("hairTest Global B7 failed");
          if (enum_thorough.hairTestB8(blonde) != blonde) throw new Exception("hairTest Global B8 failed");
          if (enum_thorough.hairTestB9(blonde) != blonde) throw new Exception("hairTest Global B9 failed");
          if (enum_thorough.hairTestBA(blonde) != blonde) throw new Exception("hairTest Global BA failed");
          if (enum_thorough.hairTestBB(blonde) != blonde) throw new Exception("hairTest Global BB failed");
          if (enum_thorough.hairTestBC(blonde) != blonde) throw new Exception("hairTest Global BC failed");

          if (enum_thorough.hairTestC1(blonde) != blonde) throw new Exception("hairTest Global C1 failed");
          if (enum_thorough.hairTestC2(blonde) != blonde) throw new Exception("hairTest Global C2 failed");
          if (enum_thorough.hairTestC3(blonde) != blonde) throw new Exception("hairTest Global C3 failed");
          if (enum_thorough.hairTestC4(blonde) != blonde) throw new Exception("hairTest Global C4 failed");
          if (enum_thorough.hairTestC5(blonde) != blonde) throw new Exception("hairTest Global C5 failed");
          if (enum_thorough.hairTestC6(blonde) != blonde) throw new Exception("hairTest Global C6 failed");
          if (enum_thorough.hairTestC7(blonde) != blonde) throw new Exception("hairTest Global C7 failed");
          if (enum_thorough.hairTestC8(blonde) != blonde) throw new Exception("hairTest Global C8 failed");
          if (enum_thorough.hairTestC9(blonde) != blonde) throw new Exception("hairTest Global C9 failed");
          if (enum_thorough.hairTestCA(blonde) != blonde) throw new Exception("hairTest Global CA failed");
          if (enum_thorough.hairTestCB(blonde) != blonde) throw new Exception("hairTest Global CB failed");
          if (enum_thorough.hairTestCC(blonde) != blonde) throw new Exception("hairTest Global CC failed");
        }
        {
          FirStruct f = new FirStruct();
          HairStruct.hair blonde = HairStruct.hair.blonde;

          if (f.hairTestFir1(blonde) != blonde) throw new Exception("hairTestFir 1 failed");
          if (f.hairTestFir2(blonde) != blonde) throw new Exception("hairTestFir 2 failed");
          if (f.hairTestFir3(blonde) != blonde) throw new Exception("hairTestFir 3 failed");
          if (f.hairTestFir4(blonde) != blonde) throw new Exception("hairTestFir 4 failed");
          if (f.hairTestFir5(blonde) != blonde) throw new Exception("hairTestFir 5 failed");
          if (f.hairTestFir6(blonde) != blonde) throw new Exception("hairTestFir 6 failed");
          if (f.hairTestFir7(blonde) != blonde) throw new Exception("hairTestFir 7 failed");
          if (f.hairTestFir8(blonde) != blonde) throw new Exception("hairTestFir 8 failed");
          if (f.hairTestFir9(blonde) != blonde) throw new Exception("hairTestFir 9 failed");
          if (f.hairTestFirA(blonde) != blonde) throw new Exception("hairTestFir A failed");
        }
        {
          enum_thorough.GlobalInstance = enum_thorough.globalinstance2;
          if (enum_thorough.GlobalInstance != enum_thorough.globalinstance2) throw new Exception("GlobalInstance 1 failed");

          Instances i = new Instances();
          i.MemberInstance = Instances.memberinstance3;
          if (i.MemberInstance != Instances.memberinstance3) throw new Exception("MemberInstance 1 failed");
        }
        {
          if ((int)enum_thorough.repeatTest(repeat.one) != 1) throw new Exception("repeatTest 1 failed");
          if ((int)enum_thorough.repeatTest(repeat.initial) != 1) throw new Exception("repeatTest 2 failed");
          if ((int)enum_thorough.repeatTest(repeat.two) != 2) throw new Exception("repeatTest 3 failed");
          if ((int)enum_thorough.repeatTest(repeat.three) != 3) throw new Exception("repeatTest 4 failed");
          if ((int)enum_thorough.repeatTest(repeat.last) != 3) throw new Exception("repeatTest 5 failed");
          if ((int)enum_thorough.repeatTest(repeat.end) != 3) throw new Exception("repeatTest 6 failed");
        }
    }