Code development platform for open source projects from the European Union institutions :large_blue_circle: EU Login authentication by SMS has been phased out. To see alternatives please check here

Skip to content
Snippets Groups Projects
Commit 672f6780 authored by Markus Quaritsch's avatar Markus Quaritsch
Browse files

refactoring namespaces

parent ff03c9a7
No related branches found
No related tags found
No related merge requests found
using System;
using System;
using System.Collections.Generic;
using System.Data;
using TUGraz.VectoCore.Utils;
namespace TUGraz.VectoCore.Models.SimulationComponent.Data
namespace TUGraz.VectoCore.Models.Simulation.Data
{
/// <summary>
/// Class for representation of one EngineOnly Driving Cycle
......
using System;
using TUGraz.VectoCore.Models.SimulationComponent.Data;
namespace TUGraz.VectoCore.Models.SimulationComponent
namespace TUGraz.VectoCore.Models.Simulation.Data
{
public interface IModalDataWriter
{
......
using System;
using System.Data;
using System.Linq;
using System.Reflection;
using TUGraz.VectoCore.Utils;
namespace TUGraz.VectoCore.Models.SimulationComponent.Data
namespace TUGraz.VectoCore.Models.Simulation.Data
{
[System.ComponentModel.DesignerCategory("")] // to disable design view in VisualStudio
public class ModalResults : DataTable
......
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Common.Logging;
using Common.Logging;
namespace TUGraz.VectoCore.Models.SimulationComponent
namespace TUGraz.VectoCore.Models.SimulationComponent.Data
{
public class SimulationComponentData
{
......
......@@ -8,7 +8,7 @@ using System.Text;
using System.Text.RegularExpressions;
using TUGraz.VectoCore.Exceptions;
namespace TUGraz.VectoCore.Models.SimulationComponent.Data
namespace TUGraz.VectoCore.Utils
{
/// <summary>
/// Class for Reading and Writing VECTO CSV Files.
......
using System;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using TUGraz.VectoCore.Models.Simulation;
using TUGraz.VectoCore.Models.SimulationComponent;
using TUGraz.VectoCore.Models.SimulationComponent.Data;
using TUGraz.VectoCore.Models.SimulationComponent.Impl;
namespace TUGraz.VectoCore.Tests.Models
{
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
var engineData = new CombustionEngineData().
var engine = new CombustionEngine();
var simulationcontainer = new SimulationContainer();
simulationcontainer.Addcomponent(engine);
Assert.IsInstanceOfType(simulationcontainer.CombustionEngine(), typeof(ICombustionEngine));
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment