Scopri come scegliere il graphic designer perfetto per il tuo progetto, dall'analisi delle competenze alla valutazione del portfolio. Ottieni consigli pratici su come comunicare le tue esigenze e massimizzare il risultato finale. Scegliere il giusto professionista farà la differenza nel tuo successo visivo!
Trova professionisti vicino a te
Trova professionisti
/*
* Copyright (C) 2015 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#include "link/Linkers.h"
#include "test/Test.h"
using ::testing::Eq;
namespace aapt {
TEST(LinkersTest, LinkRootPath) {
EXPECT_THAT(link::LinkRootPath("foo/bar", "baz/qux"), Eq("foo/bar/baz/qux"));
EXPECT_THAT(link::LinkRootPath("foo/bar/", "baz/qux"), Eq("foo/bar/baz/qux"));
EXPECT_THAT(link::LinkRootPath("foo/bar", "/baz/qux"), Eq("foo/bar/baz/qux"));
EXPECT_THAT(link::LinkRootPath("foo/bar/", "/baz/qux"), Eq("foo/bar/baz/qux"));
EXPECT_THAT(link::LinkRootPath("foo/bar", "baz/qux/"), Eq("foo/bar/baz/qux/"));
EXPECT_THAT(link::LinkRootPath("foo/bar/", "baz/qux/"), Eq("foo/bar/baz/qux/"));
EXPECT_THAT(link::LinkRootPath("foo/bar", "/baz/qux/"), Eq("foo/bar/baz/qux/"));
EXPECT_THAT(link::LinkRootPath("foo/bar/", "/baz/qux/"), Eq("foo/bar/baz/qux/"));
}
} // namespace aapt