mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-14 11:22:03 +01:00
- added round-trip unit test for all loaders to check reordering channels and favorites, saving and reloading - internal code clean-up regarding different favorite list modes (none vs. flags vs. ordered per source vs. mixed source)
19 lines
486 B
C#
19 lines
486 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using ChanSort.Loader.Grundig;
|
|
|
|
namespace Test.Loader.Grundig
|
|
{
|
|
[TestClass]
|
|
public class GrundigTest
|
|
{
|
|
#region TestChannelAndFavListEditing
|
|
[TestMethod]
|
|
public void TestChannelAndFavListEditing()
|
|
{
|
|
var tempFile = TestUtils.DeploymentItem("Test.Loader.Grundig\\TestFiles") + "\\dvbs_config.xml";
|
|
RoundtripTest.TestChannelAndFavListEditing(tempFile, new GrundigPlugin());
|
|
}
|
|
#endregion
|
|
}
|
|
}
|