@@ -14,10 +14,10 @@ public void testSourceWithQuoteAndDoubleQuotesEscapedAndFinalQuoteShouldNotRaise
14
14
String s = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("RemoteCallLogger_v1e0.ino" ).getFile ()));
15
15
16
16
PdePreprocessor pdePreprocessor = new PdePreprocessor ();
17
- String stippedOutput = pdePreprocessor .strip (s );
17
+ String strippedOutput = pdePreprocessor .strip (s );
18
18
String expectedStrippedOutput = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("RemoteCallLogger_v1e0.stripped.ino" ).getFile ()));
19
19
20
- assertEquals (expectedStrippedOutput , stippedOutput );
20
+ assertEquals (expectedStrippedOutput , strippedOutput );
21
21
22
22
pdePreprocessor .writePrefix (s );
23
23
@@ -36,10 +36,10 @@ public void testIncludeInsideMultilineComment() throws Exception {
36
36
String s = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("IncludeBetweenMultilineComment.ino" ).getFile ()));
37
37
38
38
PdePreprocessor pdePreprocessor = new PdePreprocessor ();
39
- String stippedOutput = pdePreprocessor .strip (s );
39
+ String strippedOutput = pdePreprocessor .strip (s );
40
40
String expectedStrippedOutput = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("IncludeBetweenMultilineComment.stripped.ino" ).getFile ()));
41
41
42
- assertEquals (expectedStrippedOutput , stippedOutput );
42
+ assertEquals (expectedStrippedOutput , strippedOutput );
43
43
44
44
pdePreprocessor .writePrefix (s );
45
45
@@ -57,10 +57,10 @@ public void testPdePreprocessorRegressionBaladuino() throws Exception {
57
57
String s = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("Baladuino.ino" ).getFile ()));
58
58
59
59
PdePreprocessor pdePreprocessor = new PdePreprocessor ();
60
- String stippedOutput = pdePreprocessor .strip (s );
60
+ String strippedOutput = pdePreprocessor .strip (s );
61
61
String expectedStrippedOutput = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("Baladuino.stripped.ino" ).getFile ()));
62
62
63
- assertEquals (expectedStrippedOutput , stippedOutput );
63
+ assertEquals (expectedStrippedOutput , strippedOutput );
64
64
65
65
pdePreprocessor .writePrefix (s );
66
66
@@ -86,10 +86,10 @@ public void testStringWithCcomment() throws Exception {
86
86
String s = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("StringWithCcomment.ino" ).getFile ()));
87
87
88
88
PdePreprocessor pdePreprocessor = new PdePreprocessor ();
89
- String stippedOutput = pdePreprocessor .strip (s );
89
+ String strippedOutput = pdePreprocessor .strip (s );
90
90
String expectedStrippedOutput = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("StringWithCcomment.stripped.ino" ).getFile ()));
91
91
92
- assertEquals (expectedStrippedOutput , stippedOutput );
92
+ assertEquals (expectedStrippedOutput , strippedOutput );
93
93
94
94
pdePreprocessor .writePrefix (s );
95
95
@@ -106,10 +106,10 @@ public void testCharWithEscapedDoubleQuote() throws Exception {
106
106
String s = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("CharWithEscapedDoubleQuote.ino" ).getFile ()));
107
107
108
108
PdePreprocessor pdePreprocessor = new PdePreprocessor ();
109
- String stippedOutput = pdePreprocessor .strip (s );
109
+ String strippedOutput = pdePreprocessor .strip (s );
110
110
String expectedStrippedOutput = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("CharWithEscapedDoubleQuote.stripped.ino" ).getFile ()));
111
111
112
- assertEquals (expectedStrippedOutput , stippedOutput );
112
+ assertEquals (expectedStrippedOutput , strippedOutput );
113
113
114
114
pdePreprocessor .writePrefix (s );
115
115
@@ -128,10 +128,10 @@ public void testLineContinuations() throws Exception {
128
128
String s = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("LineContinuations.ino" ).getFile ()));
129
129
130
130
PdePreprocessor pdePreprocessor = new PdePreprocessor ();
131
- String stippedOutput = pdePreprocessor .strip (s );
131
+ String strippedOutput = pdePreprocessor .strip (s );
132
132
String expectedStrippedOutput = FileUtils .readFileToString (new File (PdePreprocessorTest .class .getResource ("LineContinuations.stripped.ino" ).getFile ()));
133
133
134
- assertEquals (expectedStrippedOutput , stippedOutput );
134
+ assertEquals (expectedStrippedOutput , strippedOutput );
135
135
136
136
pdePreprocessor .writePrefix (s );
137
137
0 commit comments