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

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

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