Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Tests/HeuristicLab-3.3/CloningConstructorTest.cs @ 11064

Last change on this file since 11064 was 9783, checked in by mkommend, 11 years ago

#2088: Adapted HL-3.3.Tests, Algorithms.DataAnalysis.Tests, and Collections.Test.

File size: 3.3 KB
RevLine 
[6545]1#region License Information
2/* HeuristicLab
[9456]3 * Copyright (C) 2002-2013 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[6545]4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
22using System;
[4660]23using System.Linq;
24using System.Reflection;
25using System.Text;
26using HeuristicLab.Common;
27using HeuristicLab.PluginInfrastructure;
28using Microsoft.VisualStudio.TestTools.UnitTesting;
29
[9764]30namespace HeuristicLab.Tests {
[4660]31  [TestClass]
32  public class CloningConstructorTest {
33    // Use ClassInitialize to run code before running the first test in the class
34    [ClassInitialize]
35    public static void MyClassInitialize(TestContext testContext) {
[5306]36      PluginLoader.Assemblies.Any();
[4660]37    }
38
39    [TestMethod]
[9783]40    [TestCategory("General")]
41    [TestCategory("Essential")]
42    [TestProperty("Time", "medium")]
[4660]43    public void TestCloningConstructor() {
44      StringBuilder errorMessage = new StringBuilder();
45
46      foreach (Type deepCloneableType in ApplicationManager.Manager.GetTypes(typeof(IDeepCloneable))) {
[5151]47        //test only types contained in HL plugin assemblies
[5306]48        if (!PluginLoader.Assemblies.Contains(deepCloneableType.Assembly)) continue;
[5151]49
[4660]50        bool found = false;
51        foreach (ConstructorInfo constructor in deepCloneableType.GetConstructors(BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public)) {
52          ParameterInfo[] parameters = constructor.GetParameters();
53          if (parameters.Length == 2 && parameters[0].ParameterType == deepCloneableType && parameters[1].ParameterType == typeof(Cloner)) {
54            found = true;
55            if (deepCloneableType.IsSealed && !constructor.IsPrivate)
56              errorMessage.Append(Environment.NewLine + deepCloneableType.ToString() + ": Cloning constructor must be private in sealed classes.");
[5809]57            else if (!deepCloneableType.IsSealed && !(constructor.IsFamily || constructor.IsPublic))
[4660]58              errorMessage.Append(Environment.NewLine + deepCloneableType.ToString() + ": Cloning constructor must be protected.");
59            break;
60          }
61        }
62        if (!found)
63          errorMessage.Append(Environment.NewLine + deepCloneableType.ToString() + ": No cloning constructor is defined.");
[4661]64
65        if (!deepCloneableType.IsAbstract) {
66          MethodInfo cloneMethod = deepCloneableType.GetMethod("Clone", new Type[] { typeof(Cloner) });
67          if (cloneMethod == null)
68            errorMessage.Append(Environment.NewLine + deepCloneableType.ToString() + ": No virtual cloning method is defined.");
69        }
[4660]70      }
71      Assert.IsTrue(errorMessage.Length == 0, errorMessage.ToString());
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.