18 lines
416 B
C#
18 lines
416 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using Schnittstelle.Import.XML.v2006;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Schnittstelle.Import.XML.v2006.Tests
|
|
{
|
|
[TestClass()]
|
|
public class XML2006Tests
|
|
{
|
|
[TestMethod()]
|
|
public void XML2006Test()
|
|
{
|
|
XML2006 xml = new XML2006("../../../../test_code.xml");
|
|
}
|
|
}
|
|
} |