标签: wpf unit-testing flowdocument tablecell
我试图从FlowDocument访问TableCell的值,我完全被难倒了。
我在单元测试中这样做,断言一个特定值(日期)进入文档。
到目前为止,这是(丑陋的)代码:
((Table) ((FlowDocument) actual.Source).Blocks.FirstBlock).RowGroups[0].Rows[0].Cells[1]
修改 在此代码处,我无法看到如何访问该值。