LediReader
/
EpubReader
/Source
/VersOne.Epub.Test
/Unit
/Schema
/Opf
/Common
/EpubTextDirectionTests.cs
| using VersOne.Epub.Schema; | |
| namespace VersOne.Epub.Test.Unit.Schema.Opf.Common | |
| { | |
| public class EpubTextDirectionTests | |
| { | |
| [] | |
| [] | |
| [] | |
| [] | |
| [] | |
| [] | |
| [] | |
| public void ParseTest(string? stringValue, EpubTextDirection expectedTextDirection) | |
| { | |
| EpubTextDirection actualTextDirection = EpubTextDirectionParser.Parse(stringValue!); | |
| Assert.Equal(expectedTextDirection, actualTextDirection); | |
| } | |
| } | |
| } | |