Files
dcnsanplanung/dcnsanplanung.sharedTests/Helper/ImportToSoftwareTests.cs

20 lines
539 B
C#

using Microsoft.VisualStudio.TestTools.UnitTesting;
using dcnsanplanung.shared.Helper;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace dcnsanplanung.shared.Helper.Tests
{
[TestClass()]
public class ImportToSoftwareTests
{
[TestMethod()]
public void ImportToSoftwareTest()
{
ImportToSoftware importToSoftware = new ImportToSoftware(@"C:\Users\damia\source\repos\dcnsanplanung\test_code.xml");
}
}
}