diff options
author | Ri Xu <xuri.me@gmail.com> | 2017-08-01 16:35:18 +0800 |
---|---|---|
committer | Ri Xu <xuri.me@gmail.com> | 2017-08-01 16:35:18 +0800 |
commit | 6626a26f7baca10773f4066de47a811a8a89d236 (patch) | |
tree | a82eab7a05808e10d40f7a3be4fcbb87cff96fbb /excelize_test.go | |
parent | b327eb54dcbf3013dba29a598b87481921fff39a (diff) |
Simplify code and update unit tests.
Diffstat (limited to 'excelize_test.go')
-rw-r--r-- | excelize_test.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/excelize_test.go b/excelize_test.go index c01e277..89c8ce9 100644 --- a/excelize_test.go +++ b/excelize_test.go @@ -598,6 +598,9 @@ func TestGetPicture(t *testing.T) { // Try to get picture from a cell that doesn't contain an image. file, raw = xlsx.GetPicture("Sheet2", "A2") t.Log(file, len(raw)) + xlsx.getDrawingRelationships("xl/worksheets/_rels/sheet1.xml.rels", "rId8") + xlsx.getDrawingRelationships("", "") + xlsx.getSheetRelationshipsTargetByID("", "") } func TestSheetVisibility(t *testing.T) { |