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

Unified Diff: ios/web_view/test/chrome_web_view_test.h

Issue 2892193002: Add unittest to test CWVWebView. (Closed)
Patch Set: Created 3 years, 7 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 side-by-side diff with in-line comments
Download patch
Index: ios/web_view/test/chrome_web_view_test.h
diff --git a/ios/web_view/test/chrome_web_view_test.h b/ios/web_view/test/chrome_web_view_test.h
new file mode 100644
index 0000000000000000000000000000000000000000..a9ad42c555e039173fa75ea3b631161a8fd094ed
--- /dev/null
+++ b/ios/web_view/test/chrome_web_view_test.h
@@ -0,0 +1,29 @@
+// Copyright 2017 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.
+
+#ifndef IOS_WEB_VIEW_TEST_CHROME_WEB_VIEW_TEST_H_
+#define IOS_WEB_VIEW_TEST_CHROME_WEB_VIEW_TEST_H_
+
+#include "testing/platform_test.h"
+
+@class CWVWebView;
+@class NSURL;
+
+class ChromeWebViewTest : public PlatformTest {
+ protected:
+ ChromeWebViewTest();
+ ~ChromeWebViewTest() override;
+
+ // Loads |URL| in |web_view|.
Eugene But (OOO till 7-30) 2017/05/19 18:39:49 Please document that this method waits until URL i
michaeldo 2017/05/23 16:20:52 Done.
+ void LoadURL(CWVWebView* web_view, NSURL* URL);
+
+ // Waits until |web_view| stops loading.
Eugene But (OOO till 7-30) 2017/05/19 18:39:49 Please document what happens on timeout.
michaeldo 2017/05/23 16:20:52 Done.
+ void WaitForPageLoadCompletion(CWVWebView* web_view);
+
+ // PlatformTest methods.
+ void SetUp() override;
+ void TearDown() override;
+};
+
+#endif // IOS_WEB_VIEW_TEST_CHROME_WEB_VIEW_TEST_H_

Powered by Google App Engine
This is Rietveld 408576698