Skip to content

Commit

Permalink
[ISSUE-102]: Fix test expectation
Browse files Browse the repository at this point in the history
  • Loading branch information
muehlbrandt authored and miklossy committed Jul 20, 2022
1 parent 51a930d commit 6feb81e
Showing 1 changed file with 40 additions and 40 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -52,13 +52,13 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
graph {
1<0<->>0>2
}
--------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
''', '''
graph {
1--2
}
--------
-----
(no markers found)
''')
}
Expand All @@ -72,13 +72,13 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
graph {
1<0<->>0>2--3
}
-----------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
''', '''
graph {
1--2--3
}
-----------
-----
(no markers found)
''')
}
Expand All @@ -92,13 +92,13 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
graph {
1--2<0<->>0>3
}
-----------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
''', '''
graph {
1--2--3
}
-----------
-----
(no markers found)
''')
}
Expand All @@ -116,15 +116,15 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
2 3
}
}
-------------------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
''', '''
graph {
1 -- subgraph {
2 3
}
}
-------------------
-----
(no markers found)
''')
}
Expand All @@ -142,15 +142,15 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
2 3
} -- subgraph { 4 }
}
-------------------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
''', '''
graph {
1 -- subgraph {
2 3
} -- subgraph { 4 }
}
-----------------------
-----
(no markers found)
''')
}
Expand All @@ -168,15 +168,15 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
2 3
} <0<->>0> subgraph { 4 }
}
-----------------------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
''', '''
graph {
1 -- subgraph {
2 3
} -- subgraph { 4 }
}
-----------------------
-----
(no markers found)
''')
}
Expand All @@ -190,13 +190,13 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
digraph {
1<0<-->0>2
}
--------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
''', '''
digraph {
1->2
}
---------
-----
(no markers found)
''')
}
Expand All @@ -210,13 +210,13 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
digraph {
1<0<-->0>2->3
}
-----------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
''', '''
digraph {
1->2->3
}
-----------
-----
(no markers found)
''')
}
Expand All @@ -230,13 +230,13 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
digraph {
1->2<0<-->0>3
}
-----------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
''', '''
digraph {
1->2->3
}
-----------
-----
(no markers found)
''')
}
Expand All @@ -254,15 +254,15 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
2 3
}
}
-------------------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
''', '''
digraph {
1 -> subgraph {
2 3
}
}
-------------------
-----
(no markers found)
''')
}
Expand All @@ -280,15 +280,15 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
2 3
} -> subgraph { 4 }
}
-------------------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
''', '''
digraph {
1 -> subgraph {
2 3
} -> subgraph { 4 }
}
-----------------------
-----
(no markers found)
''')
}
Expand All @@ -306,15 +306,15 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
2 3
} <0<-->0> subgraph { 4 }
}
-----------------------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
''', '''
digraph {
1 -> subgraph {
2 3
} -> subgraph { 4 }
}
-----------------------
-----
(no markers found)
''')
}
Expand All @@ -330,15 +330,15 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
1<0<->>0>2
2<1<->>1>3
}
--------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
1: message=EdgeOp '->' may only be used in directed graphs.
''', [firstMarker], '''
graph {
1--2
2<0<->>0>3
}
--------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
''')
}
Expand All @@ -352,14 +352,14 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
graph {
1<0<->>0>2<1<->>1>3
}
-----------------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
1: message=EdgeOp '->' may only be used in directed graphs.
''', [firstMarker], '''
graph {
1--2<0<->>0>3
}
-----------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
''')
}
Expand All @@ -375,15 +375,15 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
1<0<-->0>2
2<1<-->1>3
}
--------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
1: message=EdgeOp '--' may only be used in undirected graphs.
''', [firstMarker], '''
digraph {
1->2
2<0<-->0>3
}
--------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
''')
}
Expand All @@ -397,14 +397,14 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
digraph {
1<0<-->0>2<1<-->1>3
}
-----------------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
1: message=EdgeOp '--' may only be used in undirected graphs.
''', [firstMarker], '''
digraph {
1->2<0<-->0>3
}
-----------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
''')
}
Expand All @@ -420,15 +420,15 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
1<0<->>0>2
2<1<->>1>3
}
--------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
1: message=EdgeOp '->' may only be used in directed graphs.
''', '''
graph {
1--2
2--3
}
--------
-----
(no markers found)
''')
}
Expand All @@ -442,14 +442,14 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
graph {
1<0<->>0>2<1<->>1>3
}
-----------------------
-----
0: message=EdgeOp '->' may only be used in directed graphs.
1: message=EdgeOp '->' may only be used in directed graphs.
''', '''
graph {
1--2--3
}
-----------
-----
(no markers found)
''')
}
Expand All @@ -465,15 +465,15 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
1<0<-->0>2
2<1<-->1>3
}
--------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
1: message=EdgeOp '--' may only be used in undirected graphs.
''', '''
digraph {
1->2
2->3
}
---------
-----
(no markers found)
''')
}
Expand All @@ -487,14 +487,14 @@ class DotMultiQuickfixTest extends AbstractEditorTest {
digraph {
1<0<-->0>2<1<-->1>3
}
-----------------------
-----
0: message=EdgeOp '--' may only be used in undirected graphs.
1: message=EdgeOp '--' may only be used in undirected graphs.
''', '''
digraph {
1->2->3
}
-----------
-----
(no markers found)
''')
}
Expand Down

0 comments on commit 6feb81e

Please sign in to comment.