Vertaling van "PHPUnit" in Engels
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
En el programa, puede volver a ejecutar las pruebas PHPUnit automáticamente con un retraso especificado.
In the program you can re-run PHPUnit tests automatically with a specified delay.
Selenium es una herramienta de automatización del navegador que puede ser integrada a PHPUnit
Selenium is a browser automation tool which can be integrated with PHPUnit
PHPUnit emplea parámetros estrictos para determinar si las unidades individuales de código están libres de errores y listas para el despliegue.
PHPUnit employs strict parameters to determine whether individual units of code are bug-free and ready for deployment.
Las pruebas en PHPUnit también deberían ser más útiles, ya que los errores fatales eliminan toda la serie de pruebas.
Tests in PHPUnit should also become more usable as fatal errors drop the whole test suite.
PHPUnit tiene instalaciones que pueden hacer copia de seguridad de variables locales y restaurarlas después de que se ejecute su prueba, lo cual puede ayudar a aliviar el problema.
PHPUnit has facilities that can backup global variables and restore them after your test is run, which can help alleviate the issue.
PHPUnit funciona bien con todos los servidores de integración continua, ya que genera todos los archivos de registro estándar para la cobertura de código y los informes de prueba.
PHPUnit works fine with every continuous integration server since it outputs all standard log files for code coverage and test reports.
El marco de pruebas PHPUnit te permite comprobar el progreso de la programación activa y descubrir vulnerabilidades y fallos de funcionamiento durante el proceso de desarrollo.
With the test framework PHPUnit, you can actively check the progress of the program and discover weaknesses and malfunctions as early on as during the development process.
El entrenamiento guía a los participantes a través de la creación de un ambiente de prueba listo para trabajar usando el marco de prueba de PHPUnit.
The training walks participants through the creation of a work-ready, testing environment using the PHPUnit testing framework.
PHPUnit se mantiene activamente, es estable y funciona de manera excelente para cada base de código, cada escenario y cada forma en que desee escribir sus pruebas.
PHPUnit is actively maintained, stable and works great for every codebase, every scenario and every way you want to write your tests.
A veces tienes que ser un poco más creativo para probar una pieza más compleja de funcionalidad, pero las aseveraciones proporcionadas por PHPUnit cubren la mayoría de los casos que querrías probar.
Sometimes you have to be a bit more creative to test a more complex piece of functionality, but the assertions provided by PHPUnit cover the majority of cases you would want to test.
Ahora ya puedes ejecutar los tests con el siguiente comando (la primera vez va a tardar un poco porque se tiene que descargar y crear el archivo de PHPUnit)
Then, execute your tests with the following command (the first time it will take some extra time because it must build the PHPUnit archive): 1 2 3 4
Este conocido framework para PHP nos permite crear y ejecutar juegos de tests unitarios de manera sencilla Como todos los frameworks de pruebas unitarias, PHPUnit utiliza assertions para verificar que el comportamiento de una unidad de código es el esperado.
Much like other unit testing frameworks, PHPUnit uses assertions to verify that the behavior of the specific component - or "unit" - being tested behaves as expected.
PHPUnit está intentando solucionar este problema añadiendo automáticamente un prefijo único en todos los namespaces de PHP (ver detalles), pero todavía no han podido completarlo.
PHPUnit is working to solve this issue by adding a custom prefix to all their PHP namespaces automatically (see details) but they haven't achieved that yet.