aboutsummaryrefslogtreecommitdiffstats
path: root/util/random/easy_ut.cpp
blob: b3966a8b5a2f0b936a483d694451e7940f817585 (plain) (blame)
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
#include "easy.h"

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

Y_UNIT_TEST_SUITE(TEasyRndInterface) {
    Y_UNIT_TEST(Test1) {
        {
            ui32 x = 0;

            x = Random();

            if (!x) {
                x = Random();
            }

            UNIT_ASSERT(x != 0);
        }

        {
            ui64 x = 0;

            x = Random();

            UNIT_ASSERT(x != 0);
        }

        {
            long double x = 0;

            x = Random();

            UNIT_ASSERT(x != 0);
        }
    }
} // Y_UNIT_TEST_SUITE(TEasyRndInterface)