Last change
on this file since 5382 was
4722,
checked in by swagner, 14 years ago
|
Merged cloning refactoring branch back into trunk (#922)
|
File size:
1.9 KB
|
Line | |
---|
1 | using System;
|
---|
2 | using System.Collections;
|
---|
3 | using System.Collections.Generic;
|
---|
4 | using System.Linq;
|
---|
5 | using System.Reflection;
|
---|
6 | using System.Text;
|
---|
7 | using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
|
---|
8 | using HeuristicLab.PluginInfrastructure;
|
---|
9 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
10 |
|
---|
11 | namespace HeuristicLab_33.Tests {
|
---|
12 | [TestClass]
|
---|
13 | public class StorableConstructorTest {
|
---|
14 |
|
---|
15 | // Use ClassInitialize to run code before running the first test in the class
|
---|
16 | [ClassInitialize]
|
---|
17 | public static void MyClassInitialize(TestContext testContext) {
|
---|
18 | PluginLoader.pluginAssemblies.Any();
|
---|
19 | }
|
---|
20 |
|
---|
21 | [TestMethod]
|
---|
22 | public void TestStorableConstructor() {
|
---|
23 | StringBuilder errorMessage = new StringBuilder();
|
---|
24 |
|
---|
25 | foreach (Type storableType in ApplicationManager.Manager.GetTypes(typeof(object))
|
---|
26 | .Where(t => StorableClassAttribute.IsStorableClass(t))) {
|
---|
27 | IEnumerable<ConstructorInfo> ctors = storableType.GetConstructors(BindingFlags.Instance | BindingFlags.NonPublic | BindingFlags.Public);
|
---|
28 | ConstructorInfo storableConstructor = ctors.Where(c => c.GetParameters().Count() == 1 && c.GetParameters().First().ParameterType == typeof(bool)).FirstOrDefault();
|
---|
29 | if (storableConstructor == null) errorMessage.Append(Environment.NewLine + storableType.ToString() + ": No storable constructor is defined.");
|
---|
30 | else {
|
---|
31 | if (storableType.IsSealed && !storableConstructor.IsPrivate)
|
---|
32 | errorMessage.Append(Environment.NewLine + storableType.ToString() + ": Storable constructor must be private in sealed classes.");
|
---|
33 | else if (!storableType.IsSealed && !(storableConstructor.IsFamily || storableConstructor.IsPublic))
|
---|
34 | errorMessage.Append(Environment.NewLine + storableType.ToString() + ": Storable constructor must be protected (can be public in rare cases).");
|
---|
35 | }
|
---|
36 | }
|
---|
37 | Assert.IsTrue(errorMessage.Length == 0, errorMessage.ToString());
|
---|
38 | }
|
---|
39 | }
|
---|
40 | }
|
---|
Note: See
TracBrowser
for help on using the repository browser.