| Index: ios/chrome/test/google_toolbox_unittest.mm
|
| diff --git a/ios/chrome/test/google_toolbox_unittest.mm b/ios/chrome/test/google_toolbox_unittest.mm
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..5f71b806de45a1fe65ca4f525dfaf3d46b43ac00
|
| --- /dev/null
|
| +++ b/ios/chrome/test/google_toolbox_unittest.mm
|
| @@ -0,0 +1,16 @@
|
| +// Copyright (c) 2016 The Chromium Authors. All rights reserved.
|
| +// Use of this source code is governed by a BSD-style license that can be
|
| +// found in the LICENSE file.
|
| +
|
| +#import <Foundation/Foundation.h>
|
| +
|
| +#include "base/logging.h"
|
| +#include "testing/gtest_mac.h"
|
| +#import "third_party/google_toolbox_for_mac/src/Foundation/GTMNSDictionary+URLArguments.h"
|
| +
|
| +// [NSDictionary gtm_dictionaryWithHttpArgumentsString] is used downstream.
|
| +// This test ensures that we keep compiling the file.
|
| +TEST(GoogleToolboxForMacTest, dictionaryWithHttpArgumentsString) {
|
| + NSDictionary* dict = [NSDictionary gtm_dictionaryWithHttpArgumentsString:@""];
|
| + EXPECT_EQ(0u, [dict count]);
|
| +}
|
|
|