24 lines
646 B
C#
24 lines
646 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using SchnittstelleImporter;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace SchnittstelleImporter.Tests
|
|
{
|
|
[TestClass()]
|
|
public class ImportTests
|
|
{
|
|
[TestMethod()]
|
|
public void GetInspektionsobjekteTest()
|
|
{
|
|
XML2006 import = new XML2006();
|
|
import.XMLFile = @"C:\Users\Damian\Desktop\XML\3_Zustandsdaten\ISYBAU_XML-2006-Zustandsdaten_DIN_EN_13508-2.xml";
|
|
import.GetInspektionsobjekte();
|
|
|
|
Assert.Fail();
|
|
}
|
|
}
|
|
} |