aboutsummaryrefslogtreecommitdiffhomepage
path: root/tests
diff options
context:
space:
mode:
authorGravatar tfarina <tfarina@chromium.org>2014-06-12 08:50:56 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2014-06-12 08:50:56 -0700
commitda4ed3289ec05a7155d5669c90a743a829574ea6 (patch)
treef4d18c4075847afac9085a8fd0c5d771b5a6511c /tests
parent06cc564823a0ae29ff5c33039a2f542d48bbeb56 (diff)
Cleanup: Delete sk_tools::make_filepath() in favor of SkOSPath::SkPathJoin().
BUG=None TEST=make tools tests && out/Debug/tests R=epoger@google.com Author: tfarina@chromium.org Review URL: https://codereview.chromium.org/327403002
Diffstat (limited to 'tests')
-rw-r--r--tests/PictureUtilsTest.cpp19
1 files changed, 0 insertions, 19 deletions
diff --git a/tests/PictureUtilsTest.cpp b/tests/PictureUtilsTest.cpp
deleted file mode 100644
index 9214d07cff..0000000000
--- a/tests/PictureUtilsTest.cpp
+++ /dev/null
@@ -1,19 +0,0 @@
-/*
- * Copyright 2012 Google Inc.
- *
- * Use of this source code is governed by a BSD-style license that can be
- * found in the LICENSE file.
- */
-
-#include "picture_utils.h"
-
-#include "SkString.h"
-#include "Test.h"
-
-DEF_TEST(PictureUtils, reporter) {
- SkString result;
- SkString filename("test");
- SkString dir("test/path");
- sk_tools::make_filepath(&result, dir, filename);
- REPORTER_ASSERT(reporter, result.equals("test/path/test"));
-}