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

Unified Diff: third_party/WebKit/Source/wtf/dtoa_test.cpp

Issue 2771783003: Move wtf_unittests to platform/wtf/. (Closed)
Patch Set: Rebase. 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/wtf/VectorTest.cpp ('k') | third_party/WebKit/Source/wtf/testing/RunAllTests.cpp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Source/wtf/dtoa_test.cpp
diff --git a/third_party/WebKit/Source/wtf/dtoa_test.cpp b/third_party/WebKit/Source/wtf/dtoa_test.cpp
deleted file mode 100644
index 64d3f35348096ec349bee6e07e8307a1cb873fa1..0000000000000000000000000000000000000000
--- a/third_party/WebKit/Source/wtf/dtoa_test.cpp
+++ /dev/null
@@ -1,42 +0,0 @@
-// Copyright 2015 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 "wtf/dtoa.h"
-
-#include "testing/gtest/include/gtest/gtest.h"
-
-namespace WTF {
-
-TEST(DtoaTest, TestNumberToFixedPrecisionString) {
- NumberToStringBuffer buffer;
-
- // There should be no trailing decimal or zeros.
- numberToFixedPrecisionString(0.0, 6, buffer);
- EXPECT_STREQ("0", buffer);
-
- // Up to 6 leading zeros.
- numberToFixedPrecisionString(0.00000123123123, 6, buffer);
- EXPECT_STREQ("0.00000123123", buffer);
-
- numberToFixedPrecisionString(0.000000123123123, 6, buffer);
- EXPECT_STREQ("1.23123e-7", buffer);
-
- // Up to 6 places before the decimal.
- numberToFixedPrecisionString(123123.123, 6, buffer);
- EXPECT_STREQ("123123", buffer);
-
- numberToFixedPrecisionString(1231231.23, 6, buffer);
- EXPECT_STREQ("1.23123e+6", buffer);
-
- // Don't strip trailing zeros in exponents.
- // http://crbug.com/545711
- numberToFixedPrecisionString(0.000000000123123, 6, buffer);
- EXPECT_STREQ("1.23123e-10", buffer);
-
- // FIXME: Trailing zeros before exponents should be stripped.
- numberToFixedPrecisionString(0.0000000001, 6, buffer);
- EXPECT_STREQ("1.00000e-10", buffer);
-}
-
-} // namespace WTF
« no previous file with comments | « third_party/WebKit/Source/wtf/VectorTest.cpp ('k') | third_party/WebKit/Source/wtf/testing/RunAllTests.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698