llvm/clang/unittests/Format/ObjCPropertyAttributeOrderFixerTest.cpp

//===- unittest/Format/ObjCPropertyAttributeOrderFixerTest.cpp - unit tests
//
// 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 "../lib/Format/ObjCPropertyAttributeOrderFixer.h"
#include "FormatTestBase.h"
#include "TestLexer.h"

#define DEBUG_TYPE

namespace clang {
namespace format {
namespace test {
namespace {

#define CHECK_PARSE(TEXT, FIELD, VALUE)

#define FAIL_PARSE(TEXT, FIELD, VALUE)

class ObjCPropertyAttributeOrderFixerTest : public FormatTestBase {};

TEST_F(ObjCPropertyAttributeOrderFixerTest, ParsesStyleOption) {}

TEST_F(ObjCPropertyAttributeOrderFixerTest, SortsSpecifiedAttributes) {}

TEST_F(ObjCPropertyAttributeOrderFixerTest, SortsAttributesWithValues) {}

TEST_F(ObjCPropertyAttributeOrderFixerTest, SortsUnspecifiedAttributesToBack) {}

TEST_F(ObjCPropertyAttributeOrderFixerTest, HandlesDuplicatedAttributes) {}

TEST_F(ObjCPropertyAttributeOrderFixerTest, SortsInPPDirective) {}

TEST_F(ObjCPropertyAttributeOrderFixerTest, HandlesAllAttributes) {}

TEST_F(ObjCPropertyAttributeOrderFixerTest, HandlesCommentsAroundAttributes) {}

} // namespace
} // namespace test
} // namespace format
} // namespace clang