@@ -271,35 +271,6 @@ public void testCustomDefaultPrettyPrinter() throws Exception
271
271
assertEquals ("[1,2]" , m .writer ().without (SerializationFeature .INDENT_OUTPUT )
272
272
.writeValueAsString (input ));
273
273
}
274
-
275
- // For [databind#703], [databind#978]
276
- public void testNonSerializabilityOfObject ()
277
- {
278
- ObjectMapper m = new ObjectMapper ();
279
- assertFalse (m .canSerialize (Object .class ));
280
- // but this used to pass, incorrectly, second time around
281
- assertFalse (m .canSerialize (Object .class ));
282
-
283
- // [databind#978]: Different answer if empty Beans ARE allowed
284
- m = new ObjectMapper ();
285
- m .disable (SerializationFeature .FAIL_ON_EMPTY_BEANS );
286
- assertTrue (m .canSerialize (Object .class ));
287
- assertTrue (MAPPER .writer ().without (SerializationFeature .FAIL_ON_EMPTY_BEANS )
288
- .canSerialize (Object .class ));
289
- assertFalse (MAPPER .writer ().with (SerializationFeature .FAIL_ON_EMPTY_BEANS )
290
- .canSerialize (Object .class ));
291
- }
292
-
293
- // for [databind#756]
294
- public void testEmptyBeanSerializability ()
295
- {
296
- // with default settings, error
297
- assertFalse (MAPPER .writer ().with (SerializationFeature .FAIL_ON_EMPTY_BEANS )
298
- .canSerialize (EmptyBean .class ));
299
- // but with changes
300
- assertTrue (MAPPER .writer ().without (SerializationFeature .FAIL_ON_EMPTY_BEANS )
301
- .canSerialize (EmptyBean .class ));
302
- }
303
274
304
275
// for [databind#898]
305
276
public void testSerializerProviderAccess () throws Exception
0 commit comments