OLD | NEW |
(Empty) | |
| 1 // Copyright (c) 2016 The Chromium Authors. All rights reserved. |
| 2 // Use of this source code is governed by a BSD-style license that can be |
| 3 // found in the LICENSE file. |
| 4 |
| 5 #import <Foundation/Foundation.h> |
| 6 |
| 7 #include "base/logging.h" |
| 8 #include "testing/gtest_mac.h" |
| 9 #import "third_party/google_toolbox_for_mac/src/Foundation/GTMNSDictionary+URLAr
guments.h" |
| 10 |
| 11 // [NSDictionary gtm_dictionaryWithHttpArgumentsString] is used downstream. |
| 12 // This test ensures that we keep compiling the file. |
| 13 TEST(GoogleToolboxForMacTest, dictionaryWithHttpArgumentsString) { |
| 14 NSDictionary* dict = [NSDictionary gtm_dictionaryWithHttpArgumentsString:@""]; |
| 15 EXPECT_EQ(0u, [dict count]); |
| 16 } |
OLD | NEW |