PHPUnit
Cet article est une ébauche concernant l’informatique.
PHPUnit
| Développé par | Sebastian Bergmann |
|---|---|
| Première version | |
| Dernière version | 13.3.1 ()[1] |
| Dépôt | github.com/sebastianbergmann/phpunit |
| Assurance qualité | Intégration continue |
| Écrit en | PHP |
| Système d'exploitation | Multiplateforme (d) |
| Environnement | Multiplateforme (d) |
| Langues | Anglais |
| Type | Framework |
| Licence | Licence BSD |
| Site web | phpunit.de |
PHPUnit est un framework open source de tests unitaires dédié au langage de programmation PHP[2].
Il permet l'implémentation des tests de régression en vérifiant que les exécutions correspondent aux assertions prédéfinies.
Historique
Créé par Sebastian Bergmann en 2004, il intègre les concepts communs aux bibliothèques de tests unitaires xUnit. Le code source de PHPUnit est hébergé sur GitHub[2].
Utilisations
- CakePHP depuis la V2
- eZ Components
- Horde 4
- Laravel
- Propel
- Serendipity
- Symfony depuis la V2
- Zend Framework
Exemple
<?php
declare(strict_types=1);
use PHPUnit\Framework\TestCase;
class StackTest extends TestCase
{
public function testPushAndPop(): void
{
$stack = array();
$this->assertEquals(0, count($stack));
array_push($stack, 'foo');
$this->assertEquals('foo', $stack[count($stack)-1]);
$this->assertEquals(1, count($stack));
$this->assertEquals('foo', array_pop($stack));
$this->assertEquals(0, count($stack));
}
}
Références
- ↑ « Release 13.3.1 », (consulté le )
- Page GitHub PHPUnit
Voir aussi
Articles connexes
Liens externes
Content Disclaimer
Informasi ini disarikan dari Wikipedia dan disajikan kembali untuk tujuan edukasi. Konten tersedia di bawah lisensi CC BY-SA 3.0. Kami tidak bertanggung jawab atas ketidakakuratan data yang bersumber dari kontribusi publik tersebut.
- The information displayed on this website is sourced in part or in whole from Wikipedia and has been adapted for the purpose of restating it. We strive to provide accurate and relevant information, however:
- There is no guarantee of absolute accuracy. Wikipedia is an open, collaborative project that can be edited by anyone, so information is subject to change.
- It is not intended to constitute professional advice. The content displayed is for informational and educational purposes only. For important decisions (e.g., medical, legal, or financial), please consult a professional.
- Content copyright. Wikipedia is licensed under the Creative Commons Attribution-ShareAlike License (CC BY-SA). This means that content may be reused with appropriate attribution and shared under a similar license.
- Responsible use. Any risk arising from the use of information from this website is entirely the responsibility of the user.