OLD | NEW |
---|---|
(Empty) | |
1 // Copyright 2014 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 #include "base/logging.h" | |
6 #include "base/mac/scoped_nsobject.h" | |
7 #include "base/memory/scoped_ptr.h" | |
8 #include "ios/web/navigation/navigation_item_impl.h" | |
9 #include "testing/gtest/include/gtest/gtest.h" | |
10 #include "testing/gtest_mac.h" | |
11 #include "testing/platform_test.h" | |
12 | |
13 namespace web { | |
14 namespace { | |
15 | |
16 class NavigationItemTest : public PlatformTest { | |
17 protected: | |
18 virtual void SetUp() { | |
19 item_.reset(new NavigationItemImpl()); | |
20 } | |
21 | |
22 scoped_ptr<NavigationItemImpl> item_; | |
23 }; | |
24 | |
25 // TODO(stuartmorgan): Remove this once NavigationItem has actual | |
blundell
2014/10/24 07:26:50
Isn't this TODO outdated now?
stuartmorgan
2014/10/24 14:57:48
Yes, we should update it to a TODO to bring in rea
rohitrao (ping after 24h)
2014/10/24 15:08:00
Done.
| |
26 // functionality to test, instead of just being pass-throughs. | |
27 TEST_F(NavigationItemTest, Dummy) { | |
28 const GURL url("http://init.test"); | |
29 item_->SetURL(url); | |
30 EXPECT_TRUE(item_->GetURL().is_valid()); | |
31 } | |
32 | |
33 } // namespace | |
34 } // namespace web | |
OLD | NEW |