예제 #1
0
        private int Test_Get_GetList(ILogWriter writer, int count)
        {
            Guid     guid = Guid.NewGuid();
            DateTime t1   = DateTime.Now;
            DateTime t2   = DateTime.Now;

            try {
                writer.Get <ExceptionInfo>(guid);
            }
            catch (NotImplementedException) {
                count++;
            }

            try {
                writer.GetList <ExceptionInfo>(t1, t2);
            }
            catch (NotImplementedException) {
                count++;
            }

            return(count);
        }