• Barajar
    Activar
    Desactivar
  • Alphabetizar
    Activar
    Desactivar
  • Frente Primero
    Activar
    Desactivar
  • Ambos lados
    Activar
    Desactivar
  • Leer
    Activar
    Desactivar
Leyendo...
Frente

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

image

Boton play

image

Boton play

image

Progreso

1/5

Click para voltear

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