mirror of
https://github.com/PredatH0r/ChanSort.git
synced 2026-01-12 02:12: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
489 B
C#
19 lines
489 B
C#
using Microsoft.VisualStudio.TestTools.UnitTesting;
|
|
using ChanSort.Loader.Enigma2;
|
|
|
|
namespace Test.Loader.Enigma2
|
|
{
|
|
[TestClass]
|
|
public class Enigma2Test
|
|
{
|
|
#region TestChannelAndFavListEditing
|
|
[TestMethod]
|
|
public void TestChannelAndFavListEditing()
|
|
{
|
|
var tempFile = TestUtils.DeploymentItem("Test.Loader.Enigma2\\TestFiles") + "\\bouquets.tv";
|
|
RoundtripTest.TestChannelAndFavListEditing(tempFile, new Enigma2Plugin(), false);
|
|
}
|
|
#endregion
|
|
}
|
|
}
|