Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Tests/HeuristicLab-3.3/NamedItemTest.cs @ 17072

Last change on this file since 17072 was 11907, checked in by jkarder, 9 years ago

#2211: merged r11450, r11466, r11483, r11514, r11515 and r11890 into stable
#2234: merged r11308, r11309, r11326, r11337, r11340, r11339, r11342, r11361, r11427, r11447, r11464, r11542, r11544, r11545, r11547, r11548 into stable
#2239: merged r11437, r11439 and r11472 into stable
#2262: merged r11436, r11440, r11471, r11474, r11477, r11479, r11480, r11605, r11657, r11721, r11734, r11735, r11787, r11788, r11789 and r11826 into stable

File size: 846 bytes
Line 
1using System.Text;
2using HeuristicLab.Common;
3using HeuristicLab.Core;
4using HeuristicLab.PluginInfrastructure;
5using Microsoft.VisualStudio.TestTools.UnitTesting;
6
7namespace HeuristicLab.Tests {
8  [TestClass]
9  public class NamedItemTest {
10    [TestMethod]
11    [TestCategory("General")]
12    [TestCategory("Essential")]
13    [TestProperty("Time", "long")]
14    public void NamedItemTestNameNotEmpty() {
15      StringBuilder sb = new StringBuilder();
16      foreach (var namedItem in ApplicationManager.Manager.GetInstances<INamedItem>()) {
17        if (string.IsNullOrEmpty(namedItem.Name)) {
18          sb.AppendLine(string.Format("{0} does not have a name specified when created by the default ctor.", namedItem.GetType().GetPrettyName()));
19        }
20      }
21      Assert.IsTrue(sb.Length == 0, sb.ToString());
22    }
23  }
24}
Note: See TracBrowser for help on using the repository browser.