Files
ChanSort/Test.Loader.LG/LH/TestLH.cs
hbeham ede6144d91 - completed unit tests from LG models
- fixed handling of broken files with circular linked-channel-list
2013-05-07 00:27:17 +02:00

25 lines
491 B
C#

using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Test.Loader.LG
{
[TestClass]
public class TestLH : TestBase
{
[TestMethod]
public void TestLH3000_T164TR()
{
// different file format than other LH-models
// test file from "Egon"
this.ExecuteTest("LH/xxLH3000-ZA00002");
}
[TestMethod]
public void TestLH5000_AC164TR_Cyrillic()
{
// test file from "JLevi"
this.ExecuteTest("LH/xxLH5000-ZB00002");
}
}
}