예제 #1
0
        public void WhenGetFileFormatForAsposeCarsBinaryFile_ThenValidFormatReturned()
        {
            var format = _supporter.GetFileFormat(BaseFilePath + BinaryExt);

            Assert.AreEqual(format, CarFileFormat.Binary);
        }
예제 #2
0
        public void WhenGetFileFormatForAsposeCarsJsonFile_ThenValidFormatReturned()
        {
            var format = _supporter.GetFileFormat(BaseFilePath + JsonExt);

            Assert.AreEqual(format, _jsonFileFormat);
        }