예제 #1
0
        public void TestThatTeamCityBlockClosedMessageIsProperlyFormatted()
        {
            _tcServiceMessageLogger.LogSectionEnd(MESSAGE);
            var returnedMessage = GetMessages().Single();

            Assert.That(returnedMessage, Is.EqualTo(string.Format("##teamcity[blockClosed name='{0}']", MESSAGE)));
        }
예제 #2
0
파일: Logger.cs 프로젝트: brigs/ConDep
 public static void LogSectionEnd(string name)
 {
     _log.LogSectionEnd(name);
 }