blob: 0f3cc0bc95a8de8383baa5bc0e39f7170c884ef8 [file] [log] [blame]
Lloyd Pique70d91362018-10-18 16:02:55 -07001/*
2 * Copyright 2018 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
17#include <compositionengine/impl/CompositionEngine.h>
18#include <gtest/gtest.h>
19
20namespace android::compositionengine {
21namespace {
22
23class CompositionEngineTest : public testing::Test {
24public:
25 ~CompositionEngineTest() override;
26
27 impl::CompositionEngine engine;
28};
29
30CompositionEngineTest::~CompositionEngineTest() = default;
31
32TEST_F(CompositionEngineTest, canInstantiateCompositionEngine) {
33 auto engine = impl::createCompositionEngine();
34 EXPECT_TRUE(engine.get() != nullptr);
35}
36
37} // namespace
38} // namespace android::compositionengine