1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-26 05:02:18 +00:00

Add pear-PHPUnit, a regression testing framework used by the developer

who implements unit tests in PHP. It is based upon JUnit, which
can be found at http://www.junit.org/.

WWW: http://pear.php.net/package-info.php?package=PHPUnit
WWW: http://www.sebastian-bergmann.de/PHPUnit/

PR:		ports/63311
Submitted by:	Gerrit Beine <gerrit@beine-computer.de>
This commit is contained in:
Pav Lucistnik 2004-02-28 10:56:38 +00:00
parent ff88f64618
commit bfb72fe543
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=102367
4 changed files with 35 additions and 0 deletions

View File

@ -915,6 +915,7 @@
SUBDIR += pear-HTML_Template_PHPLIB
SUBDIR += pear-I18N
SUBDIR += pear-PEAR
SUBDIR += pear-PHPUnit
SUBDIR += pear-XML_Parser
SUBDIR += pear-XML_RPC
SUBDIR += pear-XML_RSS

View File

@ -0,0 +1,26 @@
# Ports collection makefile for: pear-PHPUnit
# Date created: 24 February 2004
# Whom: Gerrit Beine (<gerrit@beine-computer.de>)
#
# $FreeBSD$
#
PORTNAME= PHPUnit
PORTVERSION= 0.6.2
CATEGORIES= devel www pear
MAINTAINER= gerrit@beine-computer.de
COMMENT= Regression testing framework for unit tests
BUILD_DEPENDS= ${PEARDIR}/PEAR.php:${PORTSDIR}/devel/pear-PEAR
RUN_DEPENDS= ${BUILD_DEPENDS}
FILES= PHPUnit.php \
PHPUnit/Assert.php PHPUnit/RepeatedTest.php PHPUnit/TestCase.php \
PHPUnit/TestDecorator.php PHPUnit/TestFailure.php PHPUnit/TestListener.php \
PHPUnit/TestResult.php PHPUnit/TestSuite.php \
PHPUnit/GUI/HTML.php PHPUnit/GUI/HTML.tpl PHPUnit/GUI/SetupDecorator.php
.include <bsd.port.pre.mk>
.include "${PORTSDIR}/devel/pear-PEAR/Makefile.common"
.include <bsd.port.post.mk>

View File

@ -0,0 +1,2 @@
MD5 (PEAR/PHPUnit-0.6.2.tgz) = 398c7c06e9da6a93528d06df715723aa
SIZE (PEAR/PHPUnit-0.6.2.tgz) = 11551

View File

@ -0,0 +1,6 @@
PHPUnit is a regression testing framework used by the developer
who implements unit tests in PHP. It is based upon JUnit, which
can be found at http://www.junit.org/.
WWW: http://pear.php.net/package-info.php?package=PHPUnit
WWW: http://www.sebastian-bergmann.de/PHPUnit/