easy_ut.cpp 574 B

1234567891011121314151617181920212223242526272829303132333435
  1. #include "easy.h"
  2. #include <library/cpp/testing/unittest/registar.h>
  3. Y_UNIT_TEST_SUITE(TEasyRndInterface) {
  4. Y_UNIT_TEST(Test1) {
  5. {
  6. ui32 x = 0;
  7. x = Random();
  8. if (!x) {
  9. x = Random();
  10. }
  11. UNIT_ASSERT(x != 0);
  12. }
  13. {
  14. ui64 x = 0;
  15. x = Random();
  16. UNIT_ASSERT(x != 0);
  17. }
  18. {
  19. long double x = 0;
  20. x = Random();
  21. UNIT_ASSERT(x != 0);
  22. }
  23. }
  24. } // Y_UNIT_TEST_SUITE(TEasyRndInterface)