File tree Expand file tree Collapse file tree 1 file changed +10
-3
lines changed
metafix/src/test/java/org/metafacture/metafix Expand file tree Collapse file tree 1 file changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -46,20 +46,27 @@ public FindFixPathsTest() {
46
46
@ Test
47
47
public void testShouldFindPaths () {
48
48
verify (
49
- "a.1 \t |\t An ETL test" ,
49
+ "a\t |\t An ETL test" ,
50
50
"c.2\t |\t ETL what?" );
51
51
}
52
52
53
53
private void processRecord () {
54
54
finder .setReceiver (receiver );
55
- finder .startRecord ("" );
55
+ finder .startRecord ("1 " );
56
56
finder .literal ("a" , "An ETL test" );
57
57
finder .literal ("b" , "" );
58
58
finder .literal ("b" , "Dummi" );
59
59
finder .literal ("b" , "Dog" );
60
60
finder .literal ("c" , "" );
61
61
finder .literal ("c" , "ETL what?" );
62
- finder .literal ("a" , "An ETL test" );
62
+ finder .endRecord ();
63
+ finder .startRecord ("2" );
64
+ finder .literal ("a" , "An another test" );
65
+ finder .literal ("b" , "" );
66
+ finder .literal ("b" , "Dummi" );
67
+ finder .literal ("b" , "Dog" );
68
+ finder .literal ("c" , "" );
69
+ finder .literal ("c" , "ETL what?" );
63
70
finder .endRecord ();
64
71
finder .closeStream ();
65
72
}
You can’t perform that action at this time.
0 commit comments