aboutsummaryrefslogtreecommitdiffstats
path: root/yql/essentials/sql/v1/highlight/sql_highlight_json_ut.cpp
blob: 0329ad32320fc672283bccfd53ec6c33871563bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include "sql_highlight_json.h"

#include <library/cpp/testing/unittest/registar.h>

using namespace NSQLHighlight;

Y_UNIT_TEST_SUITE(SqlHighlightJsonTests) {

    Y_UNIT_TEST(Smoke) {
        NJson::TJsonValue json = ToJson(MakeHighlighting());
        UNIT_ASSERT(json.Has("units"));
    }

} // Y_UNIT_TEST_SUITE(SqlHighlightJsonTests)