From 5afe07ca52f6e52375cd64ef79a2f160edce9e28 Mon Sep 17 00:00:00 2001 From: Rupert Moran-Adcock Date: Wed, 23 Sep 2020 15:02:20 +1200 Subject: [PATCH 1/2] Add dummy data Dummy data can be found in jabref/JabMapTestData --- JabMapTestData/dummydata-1.bib | 63 ++++++++++++++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 JabMapTestData/dummydata-1.bib diff --git a/JabMapTestData/dummydata-1.bib b/JabMapTestData/dummydata-1.bib new file mode 100644 index 00000000000..f22f236abea --- /dev/null +++ b/JabMapTestData/dummydata-1.bib @@ -0,0 +1,63 @@ +% Encoding: UTF-8 +@INPROCEEDINGS{aPaper, + author={T. {Kim} and S. {Park} and T. {Lee}}, + booktitle={2017 IEEE International Symposium on Software Reliability Engineering Workshops (ISSREW)}, + title={Applying software reliability engineering process to software development in Korea defense industry}, + year={2017}, + volume={}, + number={}, + pages={81-81}, +} + +@INBOOK{aBook, + author={D. {Galin}}, + booktitle={Software Quality: Concepts and Practice}, + title={Software Testing}, + year={2018}, + volume={}, + number={}, + pages={255-317}, +} + +@MindMapNode{1, + id = {1}, + name = {a node}, + bibentry = {aBook}, + icons = {to_read}, + x_pos = {2}, + y_pos = {2}, +} + +@MindMapNode{2, + id = {2}, + name = {test number 2}, + bibEntry = {aPaper}, + icons = {read,low_priority}, + x_pos = {3}, + y_pos = {3}, +} + +@MindMapNode{3, + id = {3}, + name = {test number 3}, + bibEntry = {aPaper}, + icons = {read,high_priority}, + x_pos = {1}, + y_pos = {4}, +} + +@MindMapEdge{1, + node1_id = {1}, + node2_id = {2}, + label = {some edge text}, + direction = {left} +} + +@MindMapEdge{2, + node1_id = {1}, + node2_id = {3}, + label = {some more edge text}, + direction = {right} +} + +@Comment{jabref-meta: databaseType:bibtex;} From adaba84b0773d01b8976ab4098b316caedabdfea Mon Sep 17 00:00:00 2001 From: Rupert Moran-Adcock Date: Fri, 25 Sep 2020 10:00:48 +1200 Subject: [PATCH 2/2] Update test data to match code changes --- JabMapTestData/dummydata-1.bib | 63 ---------------------------------- JabMapTestData/map_test.bib | 47 +++++++++++++++++++++++++ 2 files changed, 47 insertions(+), 63 deletions(-) delete mode 100644 JabMapTestData/dummydata-1.bib create mode 100644 JabMapTestData/map_test.bib diff --git a/JabMapTestData/dummydata-1.bib b/JabMapTestData/dummydata-1.bib deleted file mode 100644 index f22f236abea..00000000000 --- a/JabMapTestData/dummydata-1.bib +++ /dev/null @@ -1,63 +0,0 @@ -% Encoding: UTF-8 -@INPROCEEDINGS{aPaper, - author={T. {Kim} and S. {Park} and T. {Lee}}, - booktitle={2017 IEEE International Symposium on Software Reliability Engineering Workshops (ISSREW)}, - title={Applying software reliability engineering process to software development in Korea defense industry}, - year={2017}, - volume={}, - number={}, - pages={81-81}, -} - -@INBOOK{aBook, - author={D. {Galin}}, - booktitle={Software Quality: Concepts and Practice}, - title={Software Testing}, - year={2018}, - volume={}, - number={}, - pages={255-317}, -} - -@MindMapNode{1, - id = {1}, - name = {a node}, - bibentry = {aBook}, - icons = {to_read}, - x_pos = {2}, - y_pos = {2}, -} - -@MindMapNode{2, - id = {2}, - name = {test number 2}, - bibEntry = {aPaper}, - icons = {read,low_priority}, - x_pos = {3}, - y_pos = {3}, -} - -@MindMapNode{3, - id = {3}, - name = {test number 3}, - bibEntry = {aPaper}, - icons = {read,high_priority}, - x_pos = {1}, - y_pos = {4}, -} - -@MindMapEdge{1, - node1_id = {1}, - node2_id = {2}, - label = {some edge text}, - direction = {left} -} - -@MindMapEdge{2, - node1_id = {1}, - node2_id = {3}, - label = {some more edge text}, - direction = {right} -} - -@Comment{jabref-meta: databaseType:bibtex;} diff --git a/JabMapTestData/map_test.bib b/JabMapTestData/map_test.bib new file mode 100644 index 00000000000..eb0972aa8ef --- /dev/null +++ b/JabMapTestData/map_test.bib @@ -0,0 +1,47 @@ +% Encoding: UTF-8 + +@Book{burdea2003virtual, + author = {Burdea, Grigore C and Coiffet, Philippe}, + publisher = {John Wiley \& Sons}, + title = {Virtual reality technology}, + year = {2003}, + comment = {Test commentius}, +} + +@Book{heim1994metaphysics, + author = {Heim, Michael}, + publisher = {Oxford University Press}, + title = {The metaphysics of virtual reality}, + year = {1994}, +} + +@Article{steuer1992defining, + author = {Steuer, Jonathan}, + journal = {Journal of communication}, + title = {Defining virtual reality: Dimensions determining telepresence}, + year = {1992}, + number = {4}, + pages = {73--93}, + volume = {42}, + publisher = {Wiley Online Library}, +} + +@MindMapNode{mindmapnode_1, + label = {node 1}, + bibentry = {steuer1992defining}, + x_pos = {0}, + y_pos = {0}, +} + +@MindMapNode{mindmapnode_2, + label = {node 2}, + x_pos = {10}, + y_pos = {0}, +} + +@MindMapEdge{mindmapedge_from_1_to_2, + label = {test edge}, + direction = {DEFAULT}, +} + +@Comment{jabref-meta: databaseType:bibtex;}