LediReader / EpubReader /Source /VersOne.Epub.Test /Unit /Schema /Opf /Spine /EpubPageProgressionDirectionTests.cs
| using VersOne.Epub.Schema; | |
| namespace VersOne.Epub.Test.Unit.Schema.Opf.Spine | |
| { | |
| public class EpubPageProgressionDirectionTests | |
| { | |
| [] | |
| [] | |
| [] | |
| [] | |
| [] | |
| [] | |
| [] | |
| public void ParseTest(string? stringValue, EpubPageProgressionDirection expectedPageProgressionDirection) | |
| { | |
| EpubPageProgressionDirection actualPageProgressionDirection = EpubPageProgressionDirectionParser.Parse(stringValue!); | |
| Assert.Equal(expectedPageProgressionDirection, actualPageProgressionDirection); | |
| } | |
| } | |
| } | |