<#-- Uses FreeMarker template syntax, template guide can be found at http://freemarker.org/docs/dgui.html --> <#macro testInfo tests> <#-- @ftlvariable name="tests" type="java.util.List" --> <#compress> <#if tests?size == 1> Test ${tests[0].name} is <#else> ${tests?size} tests are <#macro inScope scopeBean> <#-- @ftlvariable name="scopeBean" type="jetbrains.buildServer.notification.TemplateMessageBuilder.MuteScopeBean" --> <#compress> <#if scopeBean.inProject> in project ${scopeBean.project.fullName} <#if scopeBean.inBuildType> in <#list scopeBean.buildTypes as bt>${bt.name}<#if bt_has_next>, (in ${scopeBean.buildTypesProject.fullName}) <#if scopeBean.inBuild> in build #${scopeBean.build.buildNumber} <#macro unmute unmuteModeBean> <#-- @ftlvariable name="unmuteModeBean" type="jetbrains.buildServer.notification.TemplateMessageBuilder.UnmuteModeBean" --> <#compress> <#if unmuteModeBean.manually> The tests will not be unmuted automatically. <#if unmuteModeBean.whenFixed> Each test will be unmuted automatically when passes successfully. <#if unmuteModeBean.byTime> The tests will be unmuted automatically on ${unmuteModeBean.unmuteTime}. <#macro unmutedReason unmuteModeBean scopeBean> <#-- @ftlvariable name="unmuteModeBean" type="jetbrains.buildServer.notification.TemplateMessageBuilder.UnmuteModeBean" --> <#-- @ftlvariable name="scopeBean" type="jetbrains.buildServer.notification.TemplateMessageBuilder.MuteScopeBean" --> <#compress> <#if unmuteModeBean.user??> Unmute reason: all tests are unmuted manually by ${unmuteModeBean.user.descriptiveName}. <#else> <#if unmuteModeBean.whenFixed> Unmute reason: all tests passed successfully <@mute.inScope scopeBean/>. <#if unmuteModeBean.byTime> Unmute reason: automatically on ${unmuteModeBean.unmuteTime}. <#macro comment muteInfo> <#-- @ftlvariable name="muteInfo" type="jetbrains.buildServer.serverSide.mute.MuteInfo" --> <#compress> <#if muteInfo.mutingComment??> Comment: ${muteInfo.mutingComment?html} <#macro buildProblemInfo buildProblems> <#-- @ftlvariable name="buildProblems" type="java.util.List" --> <#compress> <#if buildProblems?size == 1> Build problem is <#else> ${buildProblems?size} build problems are