llvm/clang/unittests/Format/FormatTestJson.cpp

//===- unittest/Format/FormatTestJson.cpp - Formatting tests for Json     -===//
//
// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
// See https://llvm.org/LICENSE.txt for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
//===----------------------------------------------------------------------===//

#include "FormatTestUtils.h"
#include "clang/Format/Format.h"
#include "llvm/Support/Debug.h"
#include "gtest/gtest.h"

#define DEBUG_TYPE

namespace clang {
namespace format {

class FormatTestJson : public testing::Test {};

TEST_F(FormatTestJson, JsonRecord) {}

TEST_F(FormatTestJson, JsonArray) {}

TEST_F(FormatTestJson, JsonArrayOneLine) {}

TEST_F(FormatTestJson, JsonNoStringSplit) {}

TEST_F(FormatTestJson, DisableJsonFormat) {}

TEST_F(FormatTestJson, SpaceBeforeJsonColon) {}

TEST_F(FormatTestJson, StartsWithWhitespaces) {}

} // namespace format
} // end namespace clang