Files
clice/tests/unit/Feature/Formatting.cpp
2025-08-23 22:52:27 +08:00

18 lines
353 B
C++

#include "Test/Test.h"
#include "Feature/Formatting.h"
namespace clice::testing {
namespace {
suite<"Formatting"> suite = [] {
test("Simple") = [] {
auto edits = feature::document_format("main.cpp", "int main() { return 0; }", std::nullopt);
expect(ne(edits.size(), 0));
};
};
} // namespace
} // namespace clice::testing