File: deprecated.html

package info (click to toggle)
boost 1.33.1-10
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 100,948 kB
  • ctags: 145,103
  • sloc: cpp: 573,492; xml: 49,055; python: 15,626; ansic: 13,588; sh: 2,099; yacc: 858; makefile: 660; perl: 427; lex: 111; csh: 6
file content (51 lines) | stat: -rw-r--r-- 1,814 bytes parent folder | download
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
40
41
42
43
44
45
46
47
48
49
50
51
<HTML>
<HEAD>
<TITLE>The Test Tools</TITLE>
<LINK rel="stylesheet" type="text/css" href="../../../style/btl.css" media="screen">
<LINK rel="stylesheet" type="text/css" href="../../../style/btl-print.css" media="print">
<META http-equiv="Content-Language" content="en-us">
<META http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
<STYLE type="text/css">
H4
{
    margin:     0px;
}
</STYLE>
</HEAD>
<BODY>
<DIV class="body"> 
  <H3><A name="Deprecated">Deprecate test tools</A></H3>
  <P class="first-line-indented">Here is the list of deprecated test tools used in Boost Test version 
    1 and their new analogs:</P>
  <DIV class="centered">
    <TABLE id="two-column-table" cellspacing="0" >
    <THEAD> 
    <TR> 
    <TD align="center">Old tool</TD>
    <TD align="center">New analog tool</TD>
    </TR>
    </THEAD> <TBODY> 
    <TR> 
    <TD><SPAN class="new-term">BOOST_TEST</SPAN>( predicate ) </TD>
    <TD><SPAN class="new-term">BOOST_CHECK</SPAN>( predicate )</TD>
    </TR>
    <TR> 
    <TD><SPAN class="new-term">BOOST_CRITICAL_TEST</SPAN>( predicate ) </TD>
    <TD><SPAN class="new-term">BOOST_REQUIRE</SPAN>( predicate )</TD>
    </TR>
    <TR> 
    <TD><SPAN class="new-term">BOOST_CRITICAL_ERROR</SPAN>( message ) </TD>
    <TD><SPAN class="new-term">BOOST_FAIL</SPAN>( message )</TD>
    </TR>
    </TBODY> 
    </TABLE>
  </DIV>
  <P>The main reasons for making these changes were conciseness and uniformity. Old 
    deprecated names are still accepted but may be excluded in a future releases. Thanks 
    for Ullrich Koethe, who originally proposed new names. 
</DIV>
</BODY>
</HTML>
<!-- Copyright Gennadiy Rozental 2001-2005. 
Distributed under the Boost Software License, Version 1.0. 
(See accompanying file LICENSE_1_0.txt or copy at www.boost.org/LICENSE_1_0.txt) -->