Index: Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/IllustrationPointNodeExtensionsTest.cs =================================================================== diff -u -r4dcc17dd5024d741955330ad59ee94242940f452 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/IllustrationPointNodeExtensionsTest.cs (.../IllustrationPointNodeExtensionsTest.cs) (revision 4dcc17dd5024d741955330ad59ee94242940f452) +++ Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/IllustrationPointNodeExtensionsTest.cs (.../IllustrationPointNodeExtensionsTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -50,12 +50,12 @@ var illustrationPointNode = new IllustrationPointNode(new TestSubMechanismIllustrationPoint(new[] { new SubMechanismIllustrationPointStochast(stochastNameA, - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()), new SubMechanismIllustrationPointStochast(stochastNameB, - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()) @@ -151,8 +151,8 @@ const string stochastNameB = "Stochast B"; var illustrationPointNode = new IllustrationPointNode(new TestSubMechanismIllustrationPoint(new[] { - new SubMechanismIllustrationPointStochast(stochastNameA, "[-]", 2, 4, 2), - new SubMechanismIllustrationPointStochast(stochastNameB, "[-]", 1, 5, 4) + new SubMechanismIllustrationPointStochast(stochastNameA, "-", 2, 4, 2), + new SubMechanismIllustrationPointStochast(stochastNameB, "-", 1, 5, 4) })); // Call Index: Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/IllustrationPointResultTest.cs =================================================================== diff -u -r4dcc17dd5024d741955330ad59ee94242940f452 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/IllustrationPointResultTest.cs (.../IllustrationPointResultTest.cs) (revision 4dcc17dd5024d741955330ad59ee94242940f452) +++ Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/IllustrationPointResultTest.cs (.../IllustrationPointResultTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -34,7 +34,7 @@ public void Constructor_DescriptionNull_ThrowsArgumentNullException() { // Call - void Call() => new IllustrationPointResult(null, "[-]", new Random(21).NextDouble()); + void Call() => new IllustrationPointResult(null, "-", new Random(21).NextDouble()); // Assert var exception = Assert.Throws(Call); @@ -57,7 +57,7 @@ { // Setup const string description = "illustration point"; - const string unit = "[-]"; + const string unit = "-"; var random = new Random(21); double value = random.NextDouble(); @@ -79,7 +79,7 @@ { // Setup var random = new Random(21); - var original = new IllustrationPointResult("Random description", "[-]", random.NextDouble()); + var original = new IllustrationPointResult("Random description", "-", random.NextDouble()); // Call object clone = original.Clone(); Index: Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointExtensionsTest.cs =================================================================== diff -u -r4dcc17dd5024d741955330ad59ee94242940f452 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointExtensionsTest.cs (.../SubMechanismIllustrationPointExtensionsTest.cs) (revision 4dcc17dd5024d741955330ad59ee94242940f452) +++ Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointExtensionsTest.cs (.../SubMechanismIllustrationPointExtensionsTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -50,12 +50,12 @@ var subMechanismIllustrationPoint = new TestSubMechanismIllustrationPoint(new[] { new SubMechanismIllustrationPointStochast(stochastNameA, - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()), new SubMechanismIllustrationPointStochast(stochastNameB, - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()) Index: Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointStochastTest.cs =================================================================== diff -u -r4dcc17dd5024d741955330ad59ee94242940f452 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointStochastTest.cs (.../SubMechanismIllustrationPointStochastTest.cs) (revision 4dcc17dd5024d741955330ad59ee94242940f452) +++ Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointStochastTest.cs (.../SubMechanismIllustrationPointStochastTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -54,7 +54,7 @@ { // Setup const string name = "Stochast name"; - const string unit = "[-]"; + const string unit = "-"; var random = new Random(21); double duration = random.NextDouble(); @@ -82,7 +82,7 @@ // Setup var random = new Random(21); var original = new SubMechanismIllustrationPointStochast("Random name", - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()); Index: Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointTest.cs =================================================================== diff -u -r4dcc17dd5024d741955330ad59ee94242940f452 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointTest.cs (.../SubMechanismIllustrationPointTest.cs) (revision 4dcc17dd5024d741955330ad59ee94242940f452) +++ Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/SubMechanismIllustrationPointTest.cs (.../SubMechanismIllustrationPointTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -110,11 +110,11 @@ // Setup var stochasts = new[] { - new SubMechanismIllustrationPointStochast("unique", "[-]", 0, 0, 0), - new SubMechanismIllustrationPointStochast("non-unique", "[-]", 0, 0, 0), - new SubMechanismIllustrationPointStochast("non-unique", "[-]", 0, 0, 0), - new SubMechanismIllustrationPointStochast("nonunique", "[-]", 0, 0, 0), - new SubMechanismIllustrationPointStochast("nonunique", "[-]", 0, 0, 0) + new SubMechanismIllustrationPointStochast("unique", "-", 0, 0, 0), + new SubMechanismIllustrationPointStochast("non-unique", "-", 0, 0, 0), + new SubMechanismIllustrationPointStochast("non-unique", "-", 0, 0, 0), + new SubMechanismIllustrationPointStochast("nonunique", "-", 0, 0, 0), + new SubMechanismIllustrationPointStochast("nonunique", "-", 0, 0, 0) }; // Call @@ -132,9 +132,9 @@ var random = new Random(21); var results = new[] { - new IllustrationPointResult("non-unique", "[-]", 0), - new IllustrationPointResult("non-unique", "[-]", 0), - new IllustrationPointResult("unique", "[-]", 0) + new IllustrationPointResult("non-unique", "-", 0), + new IllustrationPointResult("non-unique", "-", 0), + new IllustrationPointResult("unique", "-", 0) }; // Call @@ -155,23 +155,23 @@ new[] { new SubMechanismIllustrationPointStochast("Random name 1", - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()), new SubMechanismIllustrationPointStochast("Random name 2", - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()) }, new[] { new IllustrationPointResult("Random description 1", - "[-]", + "-", random.NextDouble()), new IllustrationPointResult("Random description 2", - "[-]", + "-", random.NextDouble()) }); Index: Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/TopLevelSubMechanismIllustrationPointExtensionsTest.cs =================================================================== diff -u -r4dcc17dd5024d741955330ad59ee94242940f452 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/TopLevelSubMechanismIllustrationPointExtensionsTest.cs (.../TopLevelSubMechanismIllustrationPointExtensionsTest.cs) (revision 4dcc17dd5024d741955330ad59ee94242940f452) +++ Riskeer/Common/test/Riskeer.Common.Data.Test/IllustrationPoints/TopLevelSubMechanismIllustrationPointExtensionsTest.cs (.../TopLevelSubMechanismIllustrationPointExtensionsTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -52,12 +52,12 @@ new TestSubMechanismIllustrationPoint(new[] { new SubMechanismIllustrationPointStochast(stochastNameA, - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()), new SubMechanismIllustrationPointStochast(stochastNameB, - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()) Index: Riskeer/Common/test/Riskeer.Common.Data.TestUtil/IllustrationPoints/TestSubMechanismIllustrationPointStochast.cs =================================================================== diff -u -r152fb1318408421028233c1e66c0b706dcb951a7 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Data.TestUtil/IllustrationPoints/TestSubMechanismIllustrationPointStochast.cs (.../TestSubMechanismIllustrationPointStochast.cs) (revision 152fb1318408421028233c1e66c0b706dcb951a7) +++ Riskeer/Common/test/Riskeer.Common.Data.TestUtil/IllustrationPoints/TestSubMechanismIllustrationPointStochast.cs (.../TestSubMechanismIllustrationPointStochast.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -34,6 +34,6 @@ /// The name of the stochast. /// The alpha value of the stochast. public TestSubMechanismIllustrationPointStochast(string name, double alpha) - : base(name, "[-]", 1, alpha, 3) {} + : base(name, "-", 1, alpha, 3) {} } } \ No newline at end of file Index: Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/SubMechanismIllustrationPointPropertiesTest.cs =================================================================== diff -u -r5c315c32bf6e74d2e9af5b97c961ae7f173a9e28 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/SubMechanismIllustrationPointPropertiesTest.cs (.../SubMechanismIllustrationPointPropertiesTest.cs) (revision 5c315c32bf6e74d2e9af5b97c961ae7f173a9e28) +++ Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/SubMechanismIllustrationPointPropertiesTest.cs (.../SubMechanismIllustrationPointPropertiesTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -53,11 +53,11 @@ 5.4, new[] { - new SubMechanismIllustrationPointStochast("Test", "[-]", 2.0, 4.5, 0.1) + new SubMechanismIllustrationPointStochast("Test", "-", 2.0, 4.5, 0.1) }, new[] { - new IllustrationPointResult("result A", "[-]", 2.3) + new IllustrationPointResult("result A", "-", 2.3) }); // Call Index: Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/SubMechanismIllustrationPointValuesPropertiesTest.cs =================================================================== diff -u -r5c315c32bf6e74d2e9af5b97c961ae7f173a9e28 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/SubMechanismIllustrationPointValuesPropertiesTest.cs (.../SubMechanismIllustrationPointValuesPropertiesTest.cs) (revision 5c315c32bf6e74d2e9af5b97c961ae7f173a9e28) +++ Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/SubMechanismIllustrationPointValuesPropertiesTest.cs (.../SubMechanismIllustrationPointValuesPropertiesTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -79,11 +79,11 @@ var random = new Random(21); var stochasts = new[] { - new SubMechanismIllustrationPointStochast("some name", "[-]", random.NextDouble(), random.NextDouble(), random.NextDouble()) + new SubMechanismIllustrationPointStochast("some name", "-", random.NextDouble(), random.NextDouble(), random.NextDouble()) }; var illustrationPointResults = new[] { - new IllustrationPointResult("some description", "[-]",random.NextDouble()) + new IllustrationPointResult("some description", "-",random.NextDouble()) }; var illustrationPoint = new SubMechanismIllustrationPoint("name", Index: Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/TopLevelSubMechanismIllustrationPointPropertiesTest.cs =================================================================== diff -u -r5c315c32bf6e74d2e9af5b97c961ae7f173a9e28 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/TopLevelSubMechanismIllustrationPointPropertiesTest.cs (.../TopLevelSubMechanismIllustrationPointPropertiesTest.cs) (revision 5c315c32bf6e74d2e9af5b97c961ae7f173a9e28) +++ Riskeer/Common/test/Riskeer.Common.Forms.Test/PropertyClasses/TopLevelSubMechanismIllustrationPointPropertiesTest.cs (.../TopLevelSubMechanismIllustrationPointPropertiesTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -154,11 +154,11 @@ double beta = random.NextDouble(); var stochasts = new[] { - new SubMechanismIllustrationPointStochast("some name", "[-]", random.NextDouble(), random.NextDouble(), random.NextDouble()) + new SubMechanismIllustrationPointStochast("some name", "-", random.NextDouble(), random.NextDouble(), random.NextDouble()) }; var illustrationPointResults = new[] { - new IllustrationPointResult("some description", "[-]",random.NextDouble()) + new IllustrationPointResult("some description", "-",random.NextDouble()) }; const string illustrationPointName = "name"; Index: Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/IllustrationPointNodeConverterTest.cs =================================================================== diff -u -r4dcc17dd5024d741955330ad59ee94242940f452 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/IllustrationPointNodeConverterTest.cs (.../IllustrationPointNodeConverterTest.cs) (revision 4dcc17dd5024d741955330ad59ee94242940f452) +++ Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/IllustrationPointNodeConverterTest.cs (.../IllustrationPointNodeConverterTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -92,8 +92,8 @@ public void Convert_TreeNodeWithoutChildrenAndSubMechanismIllustrationPointData_ReturnIllustrationPointNode() { // Setup - var hydraRingStochast = new HydraRingSubMechanismIllustrationPointStochast("stochast", "[-]", 1, 2, 3); - var hydraRingIllustrationPointResult = new HydraRingIllustrationPointResult("description", "[-]", 4); + var hydraRingStochast = new HydraRingSubMechanismIllustrationPointStochast("stochast", "-", 1, 2, 3); + var hydraRingIllustrationPointResult = new HydraRingIllustrationPointResult("description", "-", 4); var hydraRingSubMechanismIllustrationPoint = new HydraRingSubMechanismIllustrationPoint( "point", new[] Index: Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/IllustrationPointResultConverterTest.cs =================================================================== diff -u -r4dcc17dd5024d741955330ad59ee94242940f452 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/IllustrationPointResultConverterTest.cs (.../IllustrationPointResultConverterTest.cs) (revision 4dcc17dd5024d741955330ad59ee94242940f452) +++ Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/IllustrationPointResultConverterTest.cs (.../IllustrationPointResultConverterTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -48,7 +48,7 @@ // Setup var random = new Random(21); var hydraRingIllustrationPointResult = new HydraRingIllustrationPointResult("Description", - "[-]", + "-", random.NextDouble()); // Call Index: Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/StochastConverterTest.cs =================================================================== diff -u -r4adb93fc61a7f7c3b173f47dd70f261426dee266 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/StochastConverterTest.cs (.../StochastConverterTest.cs) (revision 4adb93fc61a7f7c3b173f47dd70f261426dee266) +++ Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/StochastConverterTest.cs (.../StochastConverterTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -79,7 +79,7 @@ { // Setup const string name = "name"; - const string unit = "[-]"; + const string unit = "-"; var random = new Random(21); double duration = random.Next(); Index: Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/SubMechanismIllustrationPointConverterTest.cs =================================================================== diff -u -rd161a5b9260940094e6769288e3966d3a268768a -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/SubMechanismIllustrationPointConverterTest.cs (.../SubMechanismIllustrationPointConverterTest.cs) (revision d161a5b9260940094e6769288e3966d3a268768a) +++ Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/SubMechanismIllustrationPointConverterTest.cs (.../SubMechanismIllustrationPointConverterTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -51,11 +51,11 @@ // Setup var random = new Random(21); var hydraIllustrationPointResult = new HydraRingIllustrationPointResult("HydraIllustrationPointResult", - "[-]", + "-", random.NextDouble()); const string name = "hydraRingSubMechanismIllustrationPointStochast"; - const string unit = "[-]"; + const string unit = "-"; double alpha = random.NextDouble(); double duration = random.NextDouble(); double realization = random.NextDouble(); Index: Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/TopLevelSubMechanismIllustrationPointConverterTest.cs =================================================================== diff -u -r5c315c32bf6e74d2e9af5b97c961ae7f173a9e28 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/TopLevelSubMechanismIllustrationPointConverterTest.cs (.../TopLevelSubMechanismIllustrationPointConverterTest.cs) (revision 5c315c32bf6e74d2e9af5b97c961ae7f173a9e28) +++ Riskeer/Common/test/Riskeer.Common.Service.Test/IllustrationPoints/TopLevelSubMechanismIllustrationPointConverterTest.cs (.../TopLevelSubMechanismIllustrationPointConverterTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -81,12 +81,12 @@ "closing scenario"); var hydraRingIllustrationPointResult = new HydraRingIllustrationPointResult("HydraIllustrationPointResult", - "[-]", + "-", random.NextDouble()); var hydraRingSubMechanismIllustrationPointStochast = new HydraRingSubMechanismIllustrationPointStochast("HydraSubMechanismIllustrationPointStochast", - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()); Index: Riskeer/HydraRing/test/Riskeer.HydraRing.Calculation.Test/Data/Output/IllustrationPoints/IllustrationPointResultTest.cs =================================================================== diff -u -rce27a14e46b3a18303e77b4bb271195d947b0dfc -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/HydraRing/test/Riskeer.HydraRing.Calculation.Test/Data/Output/IllustrationPoints/IllustrationPointResultTest.cs (.../IllustrationPointResultTest.cs) (revision ce27a14e46b3a18303e77b4bb271195d947b0dfc) +++ Riskeer/HydraRing/test/Riskeer.HydraRing.Calculation.Test/Data/Output/IllustrationPoints/IllustrationPointResultTest.cs (.../IllustrationPointResultTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -32,7 +32,7 @@ public void Constructor_DescriptionNull_ThrowsArgumentNullException() { // Call - void Call() => new IllustrationPointResult(null, "[-]", 0); + void Call() => new IllustrationPointResult(null, "-", 0); // Assert string paramName = Assert.Throws(Call).ParamName; @@ -55,7 +55,7 @@ { // Setup const string description = "some description"; - const string unit = "[-]"; + const string unit = "-"; const double value = 123; // Call Index: Riskeer/HydraRing/test/Riskeer.HydraRing.Calculation.Test/Data/Output/IllustrationPoints/SubMechanismIllustrationPointStochastTest.cs =================================================================== diff -u -rce27a14e46b3a18303e77b4bb271195d947b0dfc -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/HydraRing/test/Riskeer.HydraRing.Calculation.Test/Data/Output/IllustrationPoints/SubMechanismIllustrationPointStochastTest.cs (.../SubMechanismIllustrationPointStochastTest.cs) (revision ce27a14e46b3a18303e77b4bb271195d947b0dfc) +++ Riskeer/HydraRing/test/Riskeer.HydraRing.Calculation.Test/Data/Output/IllustrationPoints/SubMechanismIllustrationPointStochastTest.cs (.../SubMechanismIllustrationPointStochastTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -32,7 +32,7 @@ public void Constructor_NameNull_ThrowsArgumentNullException() { // Call - void Call() => new SubMechanismIllustrationPointStochast(null, "[-]", double.NaN, double.NaN, double.NaN); + void Call() => new SubMechanismIllustrationPointStochast(null, "-", double.NaN, double.NaN, double.NaN); // Assert var exception = Assert.Throws(Call); @@ -55,7 +55,7 @@ { // Setup const string name = "stochast name"; - const string unit = "[-]"; + const string unit = "-"; var random = new Random(21); double duration = random.NextDouble(); Index: Riskeer/Storage/test/Riskeer.Storage.Core.Test/Create/IllustrationPoints/IllustrationPointResultCreateExtensionsTest.cs =================================================================== diff -u -r8f223d35ced102ff207cff304cefadde224a17ef -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Storage/test/Riskeer.Storage.Core.Test/Create/IllustrationPoints/IllustrationPointResultCreateExtensionsTest.cs (.../IllustrationPointResultCreateExtensionsTest.cs) (revision 8f223d35ced102ff207cff304cefadde224a17ef) +++ Riskeer/Storage/test/Riskeer.Storage.Core.Test/Create/IllustrationPoints/IllustrationPointResultCreateExtensionsTest.cs (.../IllustrationPointResultCreateExtensionsTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -49,7 +49,7 @@ // Setup var random = new Random(123); var illustrationPointResult = new IllustrationPointResult("Some description", - "[-]", + "-", random.NextDouble()); int order = random.Next(); Index: Riskeer/Storage/test/Riskeer.Storage.Core.Test/Create/IllustrationPoints/SubMechanismIllustrationPointCreateExtensionsTest.cs =================================================================== diff -u -rce27a14e46b3a18303e77b4bb271195d947b0dfc -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Storage/test/Riskeer.Storage.Core.Test/Create/IllustrationPoints/SubMechanismIllustrationPointCreateExtensionsTest.cs (.../SubMechanismIllustrationPointCreateExtensionsTest.cs) (revision ce27a14e46b3a18303e77b4bb271195d947b0dfc) +++ Riskeer/Storage/test/Riskeer.Storage.Core.Test/Create/IllustrationPoints/SubMechanismIllustrationPointCreateExtensionsTest.cs (.../SubMechanismIllustrationPointCreateExtensionsTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -72,12 +72,12 @@ // Setup var random = new Random(21); var stochastOne = new SubMechanismIllustrationPointStochast("stochast name", - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()); var stochastTwo = new SubMechanismIllustrationPointStochast("Stochast name two", - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()); @@ -123,8 +123,8 @@ // Setup var random = new Random(21); - var illustrationPointResultOne = new IllustrationPointResult("result description", "[-]", random.NextDouble()); - var illustrationPointResultTwo = new IllustrationPointResult("result description two", "[kN]", random.NextDouble()); + var illustrationPointResultOne = new IllustrationPointResult("result description", "-", random.NextDouble()); + var illustrationPointResultTwo = new IllustrationPointResult("result description two", "kN", random.NextDouble()); IllustrationPointResult[] illustrationPointResults = { illustrationPointResultOne, Index: Riskeer/Storage/test/Riskeer.Storage.Core.Test/Create/IllustrationPoints/SubMechanismIllustrationPointStochastCreateExtensionsTest.cs =================================================================== diff -u -r8f223d35ced102ff207cff304cefadde224a17ef -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Storage/test/Riskeer.Storage.Core.Test/Create/IllustrationPoints/SubMechanismIllustrationPointStochastCreateExtensionsTest.cs (.../SubMechanismIllustrationPointStochastCreateExtensionsTest.cs) (revision 8f223d35ced102ff207cff304cefadde224a17ef) +++ Riskeer/Storage/test/Riskeer.Storage.Core.Test/Create/IllustrationPoints/SubMechanismIllustrationPointStochastCreateExtensionsTest.cs (.../SubMechanismIllustrationPointStochastCreateExtensionsTest.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -49,7 +49,7 @@ // Setup var random = new Random(123); var stochast = new SubMechanismIllustrationPointStochast("Some description", - "[-]", + "-", random.NextDouble(), random.NextDouble(), random.NextDouble()); Index: Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/RiskeerProjectTestHelper.cs =================================================================== diff -u -r1416355bd00bdc40ae5ce5eed924cdd127593715 -rbbc25e8be41c39c8207b40a250cb6cac3444e19a --- Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/RiskeerProjectTestHelper.cs (.../RiskeerProjectTestHelper.cs) (revision 1416355bd00bdc40ae5ce5eed924cdd127593715) +++ Riskeer/Storage/test/Riskeer.Storage.Core.TestUtil/RiskeerProjectTestHelper.cs (.../RiskeerProjectTestHelper.cs) (revision bbc25e8be41c39c8207b40a250cb6cac3444e19a) @@ -469,8 +469,8 @@ private static GeneralResult GetConfiguredGeneralResultTopLevelSubMechanismIllustrationPoint() { - var illustrationPointResult = new IllustrationPointResult("Description of result", "[-]", 5); - var subMechanismIllustrationPointStochast = new SubMechanismIllustrationPointStochast("Name of a stochast", "[-]", 10, 9, 8); + var illustrationPointResult = new IllustrationPointResult("Description of result", "-", 5); + var subMechanismIllustrationPointStochast = new SubMechanismIllustrationPointStochast("Name of a stochast", "-", 10, 9, 8); var illustrationPoint = new SubMechanismIllustrationPoint("Name of illustrationPoint", 3, new[] {