1#  Boost.Minmax Library test Jamfile
2#
3#  Copyright (C) 2002--2004, Herve Bronnimann
4#
5# Use, modification, and distribution is subject to the Boost Software
6# License, Version 1.0. (See accompanying file LICENSE_1_0.txt or copy at
7# http://www.boost.org/LICENSE_1_0.txt)
8#
9
10import testing ;
11
12alias unit_test_framework
13    : # sources
14        /boost//unit_test_framework
15    ;
16
17{
18  test-suite algorithm/minmax:
19   : [ run minmax_element_test.cpp unit_test_framework
20       : : : : minmax_element ]
21     [ run minmax_test.cpp unit_test_framework
22       : : : : minmax ]
23   ;
24}
25
26