public static void Main()
		{
			OracleConnection_Open tc = new OracleConnection_Open();
			Exception exp = null;
			try
			{
				tc.BeginTest("OracleOpenConnection");
				tc.SetUp();
				tc.run();
				tc.TearDown();
			}
			catch(Exception ex)
			{
				exp = ex;
			}
			finally
			{
				tc.EndTest(exp);
			}
		}
        public static void Main()
        {
            OracleConnection_Open tc  = new OracleConnection_Open();
            Exception             exp = null;

            try
            {
                tc.BeginTest("OracleOpenConnection");
                tc.SetUp();
                tc.run();
                tc.TearDown();
            }
            catch (Exception ex)
            {
                exp = ex;
            }
            finally
            {
                tc.EndTest(exp);
            }
        }