Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(443)

Side by Side Diff: base/json/json_parser_unittest.cc

Issue 1538743002: Switch to standard integer types in base/. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: DEPS roll too Created 4 years, 12 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « base/json/json_parser.cc ('k') | base/json/json_reader.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 // Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 // Copyright (c) 2012 The Chromium Authors. All rights reserved.
2 // Use of this source code is governed by a BSD-style license that can be 2 // Use of this source code is governed by a BSD-style license that can be
3 // found in the LICENSE file. 3 // found in the LICENSE file.
4 4
5 #include "base/json/json_parser.h" 5 #include "base/json/json_parser.h"
6 6
7 #include <stddef.h>
8
7 #include "base/json/json_reader.h" 9 #include "base/json/json_reader.h"
8 #include "base/memory/scoped_ptr.h" 10 #include "base/memory/scoped_ptr.h"
9 #include "base/values.h" 11 #include "base/values.h"
10 #include "testing/gtest/include/gtest/gtest.h" 12 #include "testing/gtest/include/gtest/gtest.h"
11 13
12 namespace base { 14 namespace base {
13 namespace internal { 15 namespace internal {
14 16
15 class JSONParserTest : public testing::Test { 17 class JSONParserTest : public testing::Test {
16 public: 18 public:
(...skipping 298 matching lines...) Expand 10 before | Expand all | Expand 10 after
315 TEST_F(JSONParserTest, DecodeUnicodeNonCharacter) { 317 TEST_F(JSONParserTest, DecodeUnicodeNonCharacter) {
316 // Tests Unicode code points (encoded as escaped UTF-16) that are not valid 318 // Tests Unicode code points (encoded as escaped UTF-16) that are not valid
317 // characters. 319 // characters.
318 EXPECT_FALSE(JSONReader::Read("[\"\\ufdd0\"]")); 320 EXPECT_FALSE(JSONReader::Read("[\"\\ufdd0\"]"));
319 EXPECT_FALSE(JSONReader::Read("[\"\\ufffe\"]")); 321 EXPECT_FALSE(JSONReader::Read("[\"\\ufffe\"]"));
320 EXPECT_FALSE(JSONReader::Read("[\"\\ud83f\\udffe\"]")); 322 EXPECT_FALSE(JSONReader::Read("[\"\\ud83f\\udffe\"]"));
321 } 323 }
322 324
323 } // namespace internal 325 } // namespace internal
324 } // namespace base 326 } // namespace base
OLDNEW
« no previous file with comments | « base/json/json_parser.cc ('k') | base/json/json_reader.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698