From 69ecb9465affeedf737fbe7bb5d4146a3e9813ab Mon Sep 17 00:00:00 2001 From: Jesse Wilson Date: Fri, 27 Aug 2010 07:33:33 +0000 Subject: [PATCH] Test case demonstrating that issue 212 is fixed. We got comment parsing support for free when we switched to JsonReader. --- .../java/com/google/gson/CommentsTest.java | 45 +++++++++++++++++++ 1 file changed, 45 insertions(+) create mode 100644 gson/src/test/java/com/google/gson/CommentsTest.java diff --git a/gson/src/test/java/com/google/gson/CommentsTest.java b/gson/src/test/java/com/google/gson/CommentsTest.java new file mode 100644 index 00000000..306e5aff --- /dev/null +++ b/gson/src/test/java/com/google/gson/CommentsTest.java @@ -0,0 +1,45 @@ +/* + * Copyright (C) 2010 Google Inc. + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.google.gson; + +import com.google.gson.reflect.TypeToken; +import java.util.Arrays; +import java.util.List; +import junit.framework.TestCase; + +/** + * @author Jesse Wilson + */ +public final class CommentsTest extends TestCase { + + /** + * Test for issue 212. + */ + public void testParseComments() { + String json = "[\n" + + " // this is a comment\n" + + " \"a\",\n" + + " /* this is another comment */\n" + + " \"b\",\n" + + " # this is yet another comment\n" + + " \"c\"\n" + + "]"; + + List abc = new Gson().fromJson(json, new TypeToken>() {}.getType()); + assertEquals(Arrays.asList("a", "b", "c"), abc); + } +}