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

Unified Diff: third_party/WebKit/Source/platform/wtf/PtrUtilTest.cpp

Issue 2790463002: Fix WTF::makeUnique for arrays (Closed)
Patch Set: Updating include path Created 3 years, 9 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
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/PtrUtil.h ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/platform/wtf/PtrUtilTest.cpp
diff --git a/third_party/WebKit/Source/platform/wtf/PtrUtilTest.cpp b/third_party/WebKit/Source/platform/wtf/PtrUtilTest.cpp
new file mode 100644
index 0000000000000000000000000000000000000000..aabb90986f351927a9aa56e193da5c5a6eded3b7
--- /dev/null
+++ b/third_party/WebKit/Source/platform/wtf/PtrUtilTest.cpp
@@ -0,0 +1,14 @@
+// Copyright (c) 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.
+
+#include "platform/wtf/PtrUtil.h"
+
+#include "testing/gtest/include/gtest/gtest.h"
+
+TEST(WTF_PtrUtilTest, canMakeUniqueArray) {
+ constexpr size_t bufferSize = 20;
+ auto charArray = WTF::makeUnique<char[]>(bufferSize);
+
+ ASSERT_TRUE(charArray.get());
+}
« no previous file with comments | « third_party/WebKit/Source/platform/wtf/PtrUtil.h ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698