Accidentally made two unit tests public - fixed
git-svn-id: file:///srv/devel/repo-conversion/nusu@250 d2e56fa2-650e-0410-a79f-9358c0239efd
This commit is contained in:
parent
0fdad7c33d
commit
48e016d956
|
@ -27,7 +27,7 @@ using NUnit.Framework;
|
|||
namespace Nuclex.Support.Cloning {
|
||||
|
||||
/// <summary>Base class for unit tests verifying the clone factory</summary>
|
||||
public abstract class CloneFactoryTest {
|
||||
internal abstract class CloneFactoryTest {
|
||||
|
||||
#region class DerivedReferenceType
|
||||
|
||||
|
|
|
@ -462,8 +462,7 @@ namespace Nuclex.Support.Cloning {
|
|||
) {
|
||||
// Enumerate all of the type's fields and generate transfer expressions for each
|
||||
FieldInfo[] fieldInfos = ClonerHelpers.GetFieldInfosIncludingBaseClasses(
|
||||
clonedType,
|
||||
BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance
|
||||
clonedType, BindingFlags.Public | BindingFlags.NonPublic | BindingFlags.Instance
|
||||
);
|
||||
for(int index = 0; index < fieldInfos.Length; ++index) {
|
||||
FieldInfo fieldInfo = fieldInfos[index];
|
||||
|
|
|
@ -29,7 +29,7 @@ namespace Nuclex.Support.Cloning {
|
|||
|
||||
/// <summary>Unit Test for the expression tree-based cloner</summary>
|
||||
[TestFixture]
|
||||
public class ExpressionTreeClonerTest : CloneFactoryTest {
|
||||
internal class ExpressionTreeClonerTest : CloneFactoryTest {
|
||||
|
||||
/// <summary>Initializes a new unit test suite for the reflection cloner</summary>
|
||||
public ExpressionTreeClonerTest() {
|
||||
|
|
Loading…
Reference in New Issue
Block a user