Exemplo n.º 1
0
        public void Info_stringはInformationレベルでログ出力を行う()
        {
            // when
            Loggi.Info("aaa");

            // then
            traceListener.AssertMessage("Information", "aaa", null);
        }
Exemplo n.º 2
0
        public void Info_ExceptionはInformationレベルでログ出力を行う()
        {
            // setup
            try
            {
                throwException("aaa");
            }
            catch (Exception e)
            {
                // when
                Loggi.Info(e);

                // then
                traceListener.AssertMessage("Information", "aaa", e);
            }
        }