Line data Source code
1 : // Copyright (c) 2019-2025 Made to Order Software Corp. All Rights Reserved
2 : //
3 : // https://snapwebsites.org/project/prinbee
4 : // contact@m2osw.com
5 : //
6 : // This program is free software: you can redistribute it and/or modify
7 : // it under the terms of the GNU General Public License as published by
8 : // the Free Software Foundation, either version 3 of the License, or
9 : // (at your option) any later version.
10 : //
11 : // This program is distributed in the hope that it will be useful,
12 : // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 : // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 : // GNU General Public License for more details.
15 : //
16 : // You should have received a copy of the GNU General Public License
17 : // along with this program. If not, see <https://www.gnu.org/licenses/>.
18 :
19 : // self
20 : //
21 : #include "catch_main.h"
22 :
23 :
24 : // prinbee
25 : //
26 : #include <prinbee/version.h>
27 :
28 :
29 : // last include
30 : //
31 : #include <snapdev/poison.h>
32 :
33 :
34 :
35 1 : CATCH_TEST_CASE("Version", "[version]")
36 : {
37 3 : CATCH_START_SECTION("version: verify runtime vs compile time version numbers")
38 : {
39 1 : CATCH_REQUIRE(prinbee::get_major_version() == PRINBEE_VERSION_MAJOR);
40 1 : CATCH_REQUIRE(prinbee::get_release_version() == PRINBEE_VERSION_MINOR);
41 1 : CATCH_REQUIRE(prinbee::get_patch_version() == PRINBEE_VERSION_PATCH);
42 1 : CATCH_REQUIRE(strcmp(prinbee::get_version_string(), PRINBEE_VERSION_STRING) == 0);
43 : }
44 2 : CATCH_END_SECTION()
45 1 : }
46 :
47 :
48 : // vim: ts=4 sw=4 et
|