Exemplo n.º 1
0
        public void TestThatTeamCityBlockOpenedMessageIsProperlyFormatted()
        {
            _tcServiceMessageLogger.LogSectionStart(MESSAGE);
            var returnedMessages = GetMessages().ToList();

            Assert.That(returnedMessages[0], Is.EqualTo("##teamcity[blockOpened name='" + MESSAGE + "']"));
            Assert.That(returnedMessages[1], Is.EqualTo("##teamcity[progressMessage '" + MESSAGE + "']"));
        }
Exemplo n.º 2
0
 public static void LogSectionStart(string name)
 {
     _log.LogSectionStart(name);
 }