File tree Expand file tree Collapse file tree 1 file changed +11
-1
lines changed
src/test/java/testinfrastructure/testutils Expand file tree Collapse file tree 1 file changed +11
-1
lines changed Original file line number Diff line number Diff line change @@ -69,7 +69,17 @@ private static String getGitLastCommitMessageIfAvailable() {
69
69
}
70
70
71
71
public static boolean gitLastCommitMessageContains (String expected ) {
72
- return getGitLastCommitMessageIfAvailable ().contains (expected );
72
+ String gitLastCommitMessageIfAvailable = getGitLastCommitMessageIfAvailable ();
73
+ banner (gitLastCommitMessageIfAvailable );
74
+ return gitLastCommitMessageIfAvailable .contains (expected );
75
+ }
76
+
77
+ private static void banner (String gitLastCommitMessageIfAvailable ) {
78
+ System .out .println ("###############################################################################################" );
79
+ System .out .println ("###############################################################################################" );
80
+ System .out .println ("### gitLastCommitMessageIfAvailable: " + gitLastCommitMessageIfAvailable );
81
+ System .out .println ("###############################################################################################" );
82
+ System .out .println ("###############################################################################################" );
73
83
}
74
84
75
85
}
1114
You can’t perform that action at this time.
0 commit comments