27 lines · cpp
1//===- unittests/Analysis/FlowSensitive/WatchedLiteralsSolverTest.cpp -----===//2//3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.4// See https://llvm.org/LICENSE.txt for license information.5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception6//7//===----------------------------------------------------------------------===//8 9#include "clang/Analysis/FlowSensitive/WatchedLiteralsSolver.h"10#include "SolverTest.h"11 12namespace clang::dataflow::test {13 14template <>15WatchedLiteralsSolver16SolverTest<WatchedLiteralsSolver>::createSolverWithLowTimeout() {17 return WatchedLiteralsSolver(10);18}19 20namespace {21 22INSTANTIATE_TYPED_TEST_SUITE_P(WatchedLiteralsSolverTest, SolverTest,23 WatchedLiteralsSolver, );24 25} // namespace26} // namespace clang::dataflow::test27