예제 #1
0
        static void Main(string[] args)
        {
            if (RepoEnvironment.version == null)
            {
                RepoEnvironment.version = new Version();
            }
            if (RepoEnvironment.storage == null)
            {
                RepoEnvironment.storage = new Storage();
            }

            ClientEnvironment.verbose = true;

            TestCheckin test = new TestCheckin();

            test.testCheckin();
            TestUtilities.putLine("\n");
        }
예제 #2
0
        /*----< checkin self-test >------------------------------------*/

        /*
         * - run by instance of TestCheckin class
         */
        public bool testComponent()
        {
            TestCheckin test = new TestCheckin();

            return(test.testCheckin());
        }