Home
last modified time | relevance | path

Searched refs:wi6 (Results 1 – 1 of 1) sorted by relevance

/third_party/boost/libs/date_time/test/
Dtestwrapping_int.cpp75 wrapping_int2<short, 2, 6> wi6(2); in main() local
76 check("construct", wi6 == 2); in main()
77 check("add up to wrap value", (wi6.add(4) == 0 && wi6 == 6)); in main()
78 check("add over the wrap value", (wi6.add(1) == 1 && wi6 == 2)); in main()
79 check("add over the wrap value X 2", wi6.add(11) == 2); in main()
80 check("add over the wrap value X 2", wi6 == 3); in main()
81 check("sub down to wrap value", wi6.subtract(1) == 0 && wi6 == 2); in main()
82 check("sub under the wrap value", wi6.subtract(1) == -1 && wi6 == 6); in main()
83 check("sub under the wrap value X 2", wi6.subtract(11) == -2 && wi6 == 5); in main()