File tree Expand file tree Collapse file tree 1 file changed +2
-0
lines changed
log4j-api-test/src/test/java/org/apache/logging/log4j/util Expand file tree Collapse file tree 1 file changed +2
-0
lines changed Original file line number Diff line number Diff line change @@ -123,6 +123,7 @@ public void testSerializationOfNonSerializableValue() throws Exception {
123
123
public void testDeserializationOfUnknownClass () throws Exception {
124
124
final SortedArrayStringMap original = new SortedArrayStringMap ();
125
125
original .putValue ("a" , "avalue" );
126
+ // org.junit.runner does not have an equivalent in junit 5
126
127
original .putValue ("serializableButNotInClasspathOfDeserializer" , new org .junit .runner .Result ());
127
128
original .putValue ("zz" , "last" );
128
129
@@ -138,6 +139,7 @@ public void testDeserializationOfUnknownClass() throws Exception {
138
139
classpath ,
139
140
DeserializerHelper .class .getName (),
140
141
file .getPath (),
142
+ // org.junit.runner does not have an equivalent in junit 5
141
143
"org.junit.runner.Result" )
142
144
.start ();
143
145
final BufferedReader in = new BufferedReader (new InputStreamReader (process .getErrorStream ()));
You can’t perform that action at this time.
0 commit comments