private AbstractSectorDataFile CreateHeaderDataFile(string fullPath, InputDataType inputDataType)
 {
     return(new HeaderDataFile(
                fullPath,
                this.streamFactory,
                SectorDataReaderFactory.Create(inputDataType)
                ));
 }
 public void TestItReturnsCorrectReader(InputDataType inputType, Type expectedReaderType)
 {
     Assert.Equal(expectedReaderType, SectorDataReaderFactory.Create(inputType).GetType());
 }