Index: test/Common/DelftTools.Tests/Controls/Swf/Table/TableViewTest.cs =================================================================== diff -u -r65f2e7d6ac377e64d885b6379ba3553a2deef981 -r0a2e4c7ac0cdcaf0038721c74ed9c823f1e14f91 --- test/Common/DelftTools.Tests/Controls/Swf/Table/TableViewTest.cs (.../TableViewTest.cs) (revision 65f2e7d6ac377e64d885b6379ba3553a2deef981) +++ test/Common/DelftTools.Tests/Controls/Swf/Table/TableViewTest.cs (.../TableViewTest.cs) (revision 0a2e4c7ac0cdcaf0038721c74ed9c823f1e14f91) @@ -872,7 +872,7 @@ var dxColumn = tableView.Columns[1].FieldValue("dxColumn"); var dxEditor = (RepositoryItemLookUpEdit) dxColumn.ColumnEdit; var list = dxEditor.DataSource as IEnumerable; - list.Should().Not.Be.Null(); + Assert.NotNull(list); TypeUtils.GetPropertyValue(list.OfType().First(), "DisplayText").Should().Be.EqualTo("[item type1]"); // Only have formatting in ComboBox tableView.GetCellDisplayText(0, 1).Should().Be.EqualTo("item type1"); // No formatting should be visible in TableView }); Index: test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj =================================================================== diff -u -r893ead4c5aa34d9e3c27688d0851f4064f9b38b6 -r0a2e4c7ac0cdcaf0038721c74ed9c823f1e14f91 --- test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj (.../DelftTools.Utils.Tests.csproj) (revision 893ead4c5aa34d9e3c27688d0851f4064f9b38b6) +++ test/Common/DelftTools.Utils.Tests/DelftTools.Utils.Tests.csproj (.../DelftTools.Utils.Tests.csproj) (revision 0a2e4c7ac0cdcaf0038721c74ed9c823f1e14f91) @@ -107,7 +107,6 @@ - Fisheye: Tag 0a2e4c7ac0cdcaf0038721c74ed9c823f1e14f91 refers to a dead (removed) revision in file `test/Common/DelftTools.Utils.Tests/Reflection/AssemblyBuilderTest.cs'. Fisheye: No comparison available. Pass `N' to diff? Index: test/Plugins/Wti/Wti.Forms.Test/Helper/PipingOutputCreator.cs =================================================================== diff -u -rcbc411cd86a4b826cfb17e0ac45921c0f6433f93 -r0a2e4c7ac0cdcaf0038721c74ed9c823f1e14f91 --- test/Plugins/Wti/Wti.Forms.Test/Helper/PipingOutputCreator.cs (.../PipingOutputCreator.cs) (revision cbc411cd86a4b826cfb17e0ac45921c0f6433f93) +++ test/Plugins/Wti/Wti.Forms.Test/Helper/PipingOutputCreator.cs (.../PipingOutputCreator.cs) (revision 0a2e4c7ac0cdcaf0038721c74ed9c823f1e14f91) @@ -1,12 +1,13 @@ using System; using Wti.Data; -namespace Wti.Forms.Test.NodePresenters +namespace Wti.Forms.Test.Helper { /// - /// Helper class to create simple PipingOutput + /// Helper class to create simple PipingOutput. /// - public class PipingOutputCreator { + public static class PipingOutputCreator + { public static PipingOutput Create() { Random random = new Random(22); Index: test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingOutputNodePresenterTest.cs =================================================================== diff -u -rcbc411cd86a4b826cfb17e0ac45921c0f6433f93 -r0a2e4c7ac0cdcaf0038721c74ed9c823f1e14f91 --- test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingOutputNodePresenterTest.cs (.../PipingOutputNodePresenterTest.cs) (revision cbc411cd86a4b826cfb17e0ac45921c0f6433f93) +++ test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingOutputNodePresenterTest.cs (.../PipingOutputNodePresenterTest.cs) (revision 0a2e4c7ac0cdcaf0038721c74ed9c823f1e14f91) @@ -6,6 +6,7 @@ using Rhino.Mocks; using Wti.Data; using Wti.Forms.NodePresenters; +using Wti.Forms.Test.Helper; using WtiFormsResources = Wti.Forms.Properties.Resources; namespace Wti.Forms.Test.NodePresenters