summaryrefslogtreecommitdiffstats
path: root/libs/ui/tests/InputDispatcher_test.cpp
blob: 3d920438a0065b7fb0b72f9cd67b29a475d15823 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
//
// Copyright 2010 The Android Open Source Project
//

#include <ui/InputDispatcher.h>
#include <gtest/gtest.h>

namespace android {

class InputDispatcherTest : public testing::Test {
public:
};

TEST_F(InputDispatcherTest, Dummy) {
    SCOPED_TRACE("Trace");
    ASSERT_FALSE(true);
}

} // namespace android