Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
monticore
EmbeddedMontiArc
generators
EMAM2Cpp
Commits
9b31f6cc
Commit
9b31f6cc
authored
Jan 08, 2018
by
Sascha Niklas Schneiders
Browse files
refactoring
parent
4a8c88c6
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/test/java/de/monticore/lang/monticar/generator/AbstractSymtabTest.java
View file @
9b31f6cc
...
...
@@ -6,6 +6,7 @@
package
de.monticore.lang.monticar.generator
;
import
de.monticore.lang.monticar.generator.order.simulator.AbstractSymtab
;
import
de.se_rwth.commons.logging.Log
;
import
org.junit.Assert
;
import
java.io.File
;
...
...
@@ -23,8 +24,8 @@ public class AbstractSymtabTest extends AbstractSymtab {
public
static
void
testFilesAreEqual
(
List
<
File
>
files
,
String
restPath
)
{
for
(
File
f
:
files
)
{
File
fileTarget
=
new
File
(
"./src/test/resources/results/"
+
restPath
+
f
.
getName
());
System
.
out
.
println
(
""
+
fileTarget
.
exists
()
+
"Exists
:
"
);
System
.
out
.
println
(
f
.
getName
()
+
" "
+
fileTarget
.
getName
()
+
"Comparing
:
"
);
Log
.
debug
(
""
+
fileTarget
.
exists
()
,
"Exists"
);
Log
.
debug
(
f
.
getName
()
+
" "
+
fileTarget
.
getName
()
,
"Comparing"
);
assertTrue
(
areBothFilesEqual
(
f
,
fileTarget
));
}
}
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment