Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: downloads/boost_1_33_1/libs/date_time/test/testconstrained_value.cpp @ 12

Last change on this file since 12 was 12, checked in by landauf, 17 years ago

added boost

File size: 2.1 KB
Line 
1/* Copyright (c) 2002,2003 CrystalClear Software, Inc.
2 * Use, modification and distribution is subject to the
3 * Boost Software License, Version 1.0. (See accompanying
4 * file LICENSE-1.0 or http://www.boost.org/LICENSE-1.0)
5 * Author: Jeff Garland
6 */
7
8#include "boost/config.hpp"
9#include "boost/date_time/constrained_value.hpp"
10#include "boost/date_time/testfrmwk.hpp"
11#include <iostream>
12
13class bad_day {}; //exception type
14
15
16class day_value_policies
17{
18public:
19  typedef unsigned int value_type;
20  static unsigned int min BOOST_PREVENT_MACRO_SUBSTITUTION () { return 0; };
21  static unsigned int max BOOST_PREVENT_MACRO_SUBSTITUTION () { return 31;};
22  static void on_error(unsigned int&, unsigned int, boost::CV::violation_enum)
23  {
24    throw bad_day();
25  }
26};
27
28struct range_error {}; //exception type
29typedef boost::CV::simple_exception_policy<int,1,10,range_error> one_to_ten_range_policy;
30
31int main()
32{
33  using namespace boost::CV;
34  constrained_value<day_value_policies> cv1(0), cv2(31);
35  check("not equal", cv1 != cv2);
36  check("equal", cv1 == cv1);
37  check("greater", cv2 > cv1);
38  check("greater or equal ", cv2 >= cv1);
39  //various running of the conversion operator
40  std::cout << cv1 << std::endl;
41  unsigned int i = cv1; 
42  check("test conversion", i == cv1);
43
44
45  try {
46    constrained_value<one_to_ten_range_policy> cv2(11);
47    std::cout << "Not Reachable: " << cv2 << " ";
48    check("got range exception max", false);
49  }
50  catch(range_error& e) {
51    e = e; // removes compiler warning
52    check("got range exception max", true);
53  }
54
55  try {
56    constrained_value<one_to_ten_range_policy> cv3(0);
57    std::cout << "Not Reachable: " << cv3 << " ";
58    check("got range exception min", false);
59  }
60  catch(range_error& e) {
61    e = e; // removes compiler warning
62    check("got range exception min", true);
63  }
64
65  try {
66    constrained_value<one_to_ten_range_policy> cv4(1);
67    cv4 = 12;
68    check("range exception on assign", false);
69  }
70  catch(range_error& e) {
71    e = e; // removes compiler warning
72    check("range exception on assign", true);
73  }
74
75  return printTestStats();
76}
77
Note: See TracBrowser for help on using the repository browser.