Home > Archive > PHP Mirrors > February 2007 > cvs: phpweb / ideas.php
You are viewing an archived Text-only version of the thread.
To view this thread in it's original format and/or if you want to reply to
this thread please [click here]
| Author |
cvs: phpweb / ideas.php
|
|
| Sebastian Bergmann 2007-02-25, 7:00 pm |
| sebastian Sun Feb 25 15:43:09 2007 UTC
Modified files:
/phpweb ideas.php
Log:
Add "Support for Mutation Testing in PHPUnit".
http://cvs.php.net/viewvc.cgi/phpwe...8&diff_format=u
Index: phpweb/ideas.php
diff -u phpweb/ideas.php:1.7 phpweb/ideas.php:1.8
--- phpweb/ideas.php:1.7 Sat Dec 9 23:31:17 2006
+++ phpweb/ideas.php Sun Feb 25 15:43:09 2007
@@ -1,5 +1,5 @@
<?php
-// $Id: ideas.php,v 1.7 2006/12/09 23:31:17 nlopess Exp $
+// $Id: ideas.php,v 1.8 2007/02/25 15:43:09 sebastian Exp $
$_SERVER['BASE_PAGE'] = 'ideas.php';
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
site_header("SoC Ideas");
@@ -74,6 +74,21 @@
<br/>
<strong>Possible mentor(s)</strong>: (not yet assigned)</p>
+<hr/>
+
+<a name="other"></a>
+<h2>Other</h2>
+
+<h3>Support for Mutation Testing in PHPUnit</h3>
+<p><strong>Description</strong>: <a href="http://en.wikipedia.org/wiki/Mutation_testing">Mutation Testing</a>,
+or Automated Error Seeding, is an approach where the testing tool makes some
+change to the tested code, runs the tests, and if the tests pass displays a
+message saying what it changed. This approach is different than code coverage
+analysis, because it can find code that is executed by the running of tests but
+not actually tested. It is not meant as a replacement for code coverage analysis,
+but complementary.<br/>More information can be found
+<a href="http://www.phpunit.de/wiki/Ideas#SupportforMutationTesting">here</a>.
+<br/><br/><strong>Possible mentor(s)</strong>: <a href="mailto:sebastian@php.net">Sebastian Bergmann</a></p>
<!--
Note: SoC 2006 Ideas. these need to be either ported to the "new style" or cleaned up
| |
| Hannes Magnusson 2007-02-25, 7:00 pm |
| Hi Sebastian
On 2/25/07, Sebastian Bergmann <sebastian@php.net> wrote:
> sebastian Sun Feb 25 15:43:09 2007 UTC
>
> Modified files:
> /phpweb ideas.php
> Log:
> Add "Support for Mutation Testing in PHPUnit".
I thought PHPUnit were no longer part of the "php.net umbrella"?
Or is this page supposed to list _all_ PHP related ideas now?
-Hannes
>
>
> http://cvs.php.net/viewvc.cgi/phpwe...8&diff_format=u
> Index: phpweb/ideas.php
> diff -u phpweb/ideas.php:1.7 phpweb/ideas.php:1.8
> --- phpweb/ideas.php:1.7 Sat Dec 9 23:31:17 2006
> +++ phpweb/ideas.php Sun Feb 25 15:43:09 2007
> @@ -1,5 +1,5 @@
> <?php
> -// $Id: ideas.php,v 1.7 2006/12/09 23:31:17 nlopess Exp $
> +// $Id: ideas.php,v 1.8 2007/02/25 15:43:09 sebastian Exp $
> $_SERVER['BASE_PAGE'] = 'ideas.php';
> include_once $_SERVER['DOCUMENT_ROOT'] . '/include/prepend.inc';
> site_header("SoC Ideas");
> @@ -74,6 +74,21 @@
> <br/>
> <strong>Possible mentor(s)</strong>: (not yet assigned)</p>
>
> +<hr/>
> +
> +<a name="other"></a>
> +<h2>Other</h2>
> +
> +<h3>Support for Mutation Testing in PHPUnit</h3>
> +<p><strong>Description</strong>: <a href="http://en.wikipedia.org/wiki/Mutation_testing">Mutation Testing</a>,
> +or Automated Error Seeding, is an approach where the testing tool makes some
> +change to the tested code, runs the tests, and if the tests pass displays a
> +message saying what it changed. This approach is different than code coverage
> +analysis, because it can find code that is executed by the running of tests but
> +not actually tested. It is not meant as a replacement for code coverage analysis,
> +but complementary.<br/>More information can be found
> +<a href="http://www.phpunit.de/wiki/Ideas#SupportforMutationTesting">here</a>.
> +<br/><br/><strong>Possible mentor(s)</strong>: <a href="mailto:sebastian@php.net">Sebastian Bergmann</a></p>
>
> <!--
> Note: SoC 2006 Ideas. these need to be either ported to the "new style" or cleaned up
>
| |
| Sebastian Bergmann 2007-02-25, 7:00 pm |
| Hannes Magnusson wrote:
> Hi Sebastian
Hello Hannes,
> I thought PHPUnit were no longer part of the "php.net umbrella"?
> Or is this page supposed to list _all_ PHP related ideas now?
Nuno said I could add it there, see the discussion on internals@.
Best regards,
Sebastian
--
Sebastian Bergmann http://sebastian-bergmann.de/
GnuPG Key: 0xB85B5D69 / 27A7 2B14 09E4 98CD 6277 0E5B 6867 C514 B85B 5D69
|
|
|
|
|