From owner-cvs-all@FreeBSD.ORG Sun Jan 29 14:24:11 2012 Return-Path: Delivered-To: cvs-all@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 31A791065670; Sun, 29 Jan 2012 14:24:11 +0000 (UTC) (envelope-from tota@FreeBSD.org) Received: from repoman.freebsd.org (repoman.freebsd.org [IPv6:2001:4f8:fff6::29]) by mx1.freebsd.org (Postfix) with ESMTP id 06BBC8FC08; Sun, 29 Jan 2012 14:24:11 +0000 (UTC) Received: from repoman.freebsd.org (localhost [127.0.0.1]) by repoman.freebsd.org (8.14.4/8.14.4) with ESMTP id q0TEOAcw000959; Sun, 29 Jan 2012 14:24:10 GMT (envelope-from tota@repoman.freebsd.org) Received: (from tota@localhost) by repoman.freebsd.org (8.14.4/8.14.4/Submit) id q0TEOAa7000958; Sun, 29 Jan 2012 14:24:10 GMT (envelope-from tota) Message-Id: <201201291424.q0TEOAa7000958@repoman.freebsd.org> From: TAKATSU Tomonari Date: Sun, 29 Jan 2012 14:24:10 +0000 (UTC) To: ports-committers@FreeBSD.org, cvs-ports@FreeBSD.org, cvs-all@FreeBSD.org X-FreeBSD-CVS-Branch: HEAD Cc: Subject: cvs commit: ports/devel Makefile ports/devel/quickcheck++ Makefile distinfo pkg-descr pkg-plist X-BeenThere: cvs-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: **OBSOLETE** CVS commit messages for the entire tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 29 Jan 2012 14:24:11 -0000 tota 2012-01-29 14:24:10 UTC FreeBSD ports repository Modified files: devel Makefile Added files: devel/quickcheck++ Makefile distinfo pkg-descr pkg-plist Log: - Add a new port: devel/quickcheck++ QuickCheck++ is a tool for testing C++ programs automatically, inspired by QuickCheck, a similar library for Haskell programs. In QuickCheck++, the application programmer provides a specification of parts of its code in the form of properties which this code must satisfy. Then, the QuickCheck++ utilities can check that these properties holds in a large number of randomly generated test cases. Specifications, i.e. properties, are written in C++ by deriving from the quickcheck::Property class. This class contains members not only to express the specification but also to observe the distribution of test data and to write custom test data generators. The framework also allows the specification of fixed test data, as can be done with more traditional unit testing frameworks. WWW: http://software.legiasoft.com/quickcheck/ Revision Changes Path 1.4818 +1 -0 ports/devel/Makefile 1.1 +58 -0 ports/devel/quickcheck++/Makefile (new) 1.1 +2 -0 ports/devel/quickcheck++/distinfo (new) 1.1 +17 -0 ports/devel/quickcheck++/pkg-descr (new) 1.1 +5 -0 ports/devel/quickcheck++/pkg-plist (new)