version.tests.cpp

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
#include <planet/version.hpp>
#include <felspar/test.hpp>


namespace {


    auto const suite = felspar::testsuite(
            "version",
            [](auto check) {
                planet::version v{"appid", "0.0", 3};
                check(v.application_id) == "appid";
                check(v.version_string) == "0.0";
                check(v.semver.major) == 0;
                check(v.semver.minor) == 0;
                check(v.semver.patch) == 0;
                check(v.build) == 3;
            },
            [](auto check) {
                planet::version v{"appid2", "0.2", 53};
                check(v.application_id) == "appid2";
                check(v.version_string) == "0.2";
                check(v.semver.major) == 0;
                check(v.semver.minor) == 2;
                check(v.semver.patch) == 0;
                check(v.build) == 53;
            },
            [](auto check) {
                planet::version v{"appid2", "5.26.123", 2253};
                check(v.application_id) == "appid2";
                check(v.version_string) == "5.26.123";
                check(v.semver.major) == 5;
                check(v.semver.minor) == 26;
                check(v.semver.patch) == 123;
                check(v.build) == 2253;
            });


}