summaryrefslogtreecommitdiff
path: root/src/unittest/test.cpp
blob: 629566492eea2039624323aaf91c03b728666f37 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
 * Copyright (c) 2021 Vasile Vilvoiu <vasi@vilvoiu.ro>
 *
 * libecbor is free software; you can redistribute it and/or modify
 * it under the terms of the MIT license. See LICENSE for details.
 */
#include "gtest/gtest.h"

int main(int argc, char **argv)
{
    ::testing::InitGoogleTest(&argc, argv);
    return RUN_ALL_TESTS();
}