File size: 359 Bytes
fab29d7
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
namespace VersOne.Epub.Test.Unit.TestData
{
    internal static class TestEpubReadingOrder
    {
        public static List<EpubLocalTextContentFile> CreateFullTestEpubReadingOrder()
        {
            return new()
            {
                TestEpubContent.Chapter1File,
                TestEpubContent.Chapter2File
            };
        }
    }
}