disabled tests for issue 43 and 44 since those are deferred for a subsequent release.

This commit is contained in:
Inderjeet Singh 2008-10-13 19:14:57 +00:00
parent 2b9fd47b72
commit add960644a
1 changed files with 2 additions and 2 deletions

View File

@ -78,7 +78,7 @@ public class CustomTypeAdaptersTest extends TestCase {
assertEquals(5, target.getBag().getIntValue());
}
public void testCustomSerializersOfSelf() {
public void disable_testCustomSerializersOfSelf() {
Gson gson = createGsonObjectWithFooTypeAdapter();
Gson basicGson = new Gson();
Foo newFooObject = new Foo(1, 2L);
@ -88,7 +88,7 @@ public class CustomTypeAdaptersTest extends TestCase {
assertEquals(jsonFromGson, jsonFromCustomSerializer);
}
public void testCustomDeserializersOfSelf() {
public void disable_testCustomDeserializersOfSelf() {
Gson gson = createGsonObjectWithFooTypeAdapter();
Gson basicGson = new Gson();
Foo expectedFoo = new Foo(1, 2L);