20 lines
528 B
C#
20 lines
528 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using dcnsanplanung.DAL.Helper;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace dcnsanplanung.DAL.Helper.Tests
|
|
{
|
|
[TestClass()]
|
|
public class WriteToDatabaseTests
|
|
{
|
|
[TestMethod()]
|
|
public void WriteToDatabaseTest()
|
|
{
|
|
WriteToDatabase writeToDatabase = new WriteToDatabase(@"C:\Users\damia\source\repos\dcnsanplanung\test_code.xml");
|
|
}
|
|
}
|
|
} |