Index: Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.IO/Exporters/MacroStabilityInwardsCalculationExporter.cs =================================================================== diff -u --- Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.IO/Exporters/MacroStabilityInwardsCalculationExporter.cs (revision 0) +++ Riskeer/MacroStabilityInwards/src/Riskeer.MacroStabilityInwards.IO/Exporters/MacroStabilityInwardsCalculationExporter.cs (revision 11b1d7ae81f23ba9b8efb90b4189d095903c0c52) @@ -0,0 +1,15 @@ +using Core.Common.Base.IO; + +namespace Riskeer.MacroStabilityInwards.IO.Exporters +{ + /// + /// Exports a macro stability inwards calculation stores it separate stix file. + /// + public class MacroStabilityInwardsCalculationExporter : IFileExporter + { + public bool Export() + { + throw new System.NotImplementedException(); + } + } +} \ No newline at end of file Index: Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.IO.Test/Exporters/MacroStabilityInwardsCalculationExporterTest.cs =================================================================== diff -u --- Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.IO.Test/Exporters/MacroStabilityInwardsCalculationExporterTest.cs (revision 0) +++ Riskeer/MacroStabilityInwards/test/Riskeer.MacroStabilityInwards.IO.Test/Exporters/MacroStabilityInwardsCalculationExporterTest.cs (revision 11b1d7ae81f23ba9b8efb90b4189d095903c0c52) @@ -0,0 +1,20 @@ +using Core.Common.Base.IO; +using NUnit.Framework; +using Riskeer.MacroStabilityInwards.IO.Exporters; + +namespace Riskeer.MacroStabilityInwards.IO.Test.Exporters +{ + [TestFixture] + public class MacroStabilityInwardsCalculationExporterTest + { + [Test] + public void Constructor_ExpectedValues() + { + // Call + var exporter = new MacroStabilityInwardsCalculationExporter(); + + // Assert + Assert.IsInstanceOf(exporter); + } + } +} \ No newline at end of file