- Barajar
ActivarDesactivar
- Alphabetizar
ActivarDesactivar
- Frente Primero
ActivarDesactivar
- Ambos lados
ActivarDesactivar
- Leer
ActivarDesactivar
Leyendo...
Cómo estudiar sus tarjetas
Teclas de Derecha/Izquierda: Navegar entre tarjetas.tecla derechatecla izquierda
Teclas Arriba/Abajo: Colvea la carta entre frente y dorso.tecla abajotecla arriba
Tecla H: Muestra pista (3er lado).tecla h
Tecla N: Lea el texto en voz.tecla n
Boton play
Boton play
5 Cartas en este set
- Frente
- Atrás
Unit testing
|
* Fixture -> Parameter for a test having a fixed state. Test precondition
* Unit Test -> Piece of code that executes specific functionalities in the code to be tested and asserts a certain behavior or state. * Test Coverage -> Percentage of code which is tested by a unit test. |
Integration testing
|
* Or functional testing
* Checks that the whole system works as intended * Allows translating user stories into a test suite |
Performance test
|
* Benchmarks the software components repeatedly.
* Ensures that the code response is good enough under high load |
Behavior vs State testing
|
* A behavior test checks if certain methods were called with the correct input parameters, not check or validate the results
* A state test checks the result, using mocks or stubs of the related classes to abstract the interactions, then checking the state or behavior depending on the needs. |
Testing frameworks
|
* Arquillian, JTest, TheGrinder, TestNG, JUnit, JWalk, Mockito, Powermock
|