@@ -33,7 +33,7 @@ public void preparePersonObj() {
3333 }
3434
3535 @ Test
36- public void WhenUseCustomGson_ThenDonotSerializeAccountNumAndPassword () {
36+ public void whenUseCustomGson_thenDonotSerializeAccountNumAndPassword () {
3737
3838 String personJson = PersonSerializer .serializeWithConfiguredGson (person );
3939 logger .info (personJson );
@@ -42,7 +42,7 @@ public void WhenUseCustomGson_ThenDonotSerializeAccountNumAndPassword () {
4242 }
4343
4444 @ Test
45- public void WhenUseDefaultGson_ThenSerializeAccountNumAndPassword () {
45+ public void whenUseDefaultGson_thenSerializeAccountNumAndPassword () {
4646
4747 String personJson = PersonSerializer .serializeWithDefaultGson (person );
4848 logger .info (personJson );
@@ -51,7 +51,7 @@ public void WhenUseDefaultGson_ThenSerializeAccountNumAndPassword () {
5151 }
5252
5353 @ Test
54- public void whenUseSerializedAnnotation_ThenUseSerializedNameinJsonString () {
54+ public void whenUseSerializedAnnotation_thenUseSerializedNameinJsonString () {
5555 String countryJson = PersonSerializer .toJsonString (country );
5656 logger .info (countryJson );
5757 assertFalse ("Test failed: No change in the keys" , countryJson .contains ("countryName" ));
@@ -64,7 +64,7 @@ public void whenUseSerializedAnnotation_ThenUseSerializedNameinJsonString() {
6464 }
6565
6666 @ Test
67- public void whenJsonStrCreatedWithCustomKeys_ThenCreateObjUsingGson () {
67+ public void whenJsonStrCreatedWithCustomKeys_thenCreateObjUsingGson () {
6868 String countryJson = PersonSerializer .toJsonString (country );
6969 Country country = PersonSerializer .fromJsonString (countryJson );
7070 logger .info (country .toString ());
0 commit comments