Add Not Found Writing Test
This commit is contained in:
parent
fbb36fb00d
commit
d4ef078b9d
@ -51,6 +51,24 @@ public class CanWriteProducts : IDisposable
|
||||
Assert.True(Enumerable.SequenceEqual(products.First().Item2, targetProducts.First().Item2));
|
||||
}
|
||||
|
||||
|
||||
[ExcelFact(Workbook = @"..\..\..\TestWorkbooks\TestSpecificationNotFound.xlsx")]
|
||||
public void CanWriteNotFound()
|
||||
{
|
||||
Worksheet sourceSheet = Util.Workbook.Worksheets[1];
|
||||
RhSolutionsAddIn.Configuration.SetPriceListPath(Path.GetFullPath(@"..\..\..\TestWorkbooks\TargetSpecificationNotFound.xlsx"));
|
||||
var products = _reader.ReadProducts(new[] { sourceSheet });
|
||||
var _writer = new ExcelWriter(Util.Application, RhSolutionsAddIn.Configuration);
|
||||
_writer.WriteProducts(products);
|
||||
Worksheet targetSheet = Util.Application.ActiveWindow.ActiveSheet;
|
||||
|
||||
Assert.Equal("???", targetSheet.Range["B4"].Value2);
|
||||
Assert.Contains("Молот Тора", targetSheet.Range["C4"].Value2);
|
||||
Assert.Contains("15555551555", targetSheet.Range["C4"].Value2);
|
||||
}
|
||||
|
||||
|
||||
|
||||
public void Dispose()
|
||||
{
|
||||
_addIn.AutoClose();
|
||||
|
BIN
RhSolutions.Tests/TestWorkbooks/TargetSpecificationNotFound.xlsx
Normal file
BIN
RhSolutions.Tests/TestWorkbooks/TargetSpecificationNotFound.xlsx
Normal file
Binary file not shown.
BIN
RhSolutions.Tests/TestWorkbooks/TestSpecificationNotFound.xlsx
Normal file
BIN
RhSolutions.Tests/TestWorkbooks/TestSpecificationNotFound.xlsx
Normal file
Binary file not shown.
Loading…
Reference in New Issue
Block a user