2019-05-23 21:43:58 +01:00
|
|
|
# atoum
|
|
|
|
|
|
|
|
> Un semplice, moderno ed intuitivo framework PHP per unit testing.
|
2019-06-09 18:54:08 +01:00
|
|
|
> Maggiori informazioni: <http://atoum.org>.
|
2019-05-23 21:43:58 +01:00
|
|
|
|
|
|
|
- Inizializza un file di configurazione:
|
|
|
|
|
|
|
|
`atoum --init`
|
|
|
|
|
|
|
|
- Esegui tutti i test:
|
|
|
|
|
|
|
|
`atoum`
|
|
|
|
|
|
|
|
- Esegui test utilizzando uno specifico file di configurazione:
|
|
|
|
|
2022-10-20 14:26:58 +01:00
|
|
|
`atoum -c {{percorso/del/file}}`
|
2019-05-23 21:43:58 +01:00
|
|
|
|
|
|
|
- Esegui uno specifico file di test:
|
|
|
|
|
2022-10-20 14:26:58 +01:00
|
|
|
`atoum -f {{percorso/del/file}}`
|
2019-05-23 21:43:58 +01:00
|
|
|
|
|
|
|
- Esegui una specifica directory di test:
|
|
|
|
|
2022-10-25 12:45:17 +01:00
|
|
|
`atoum -d {{percorso/della/directory}}`
|
2019-05-23 21:43:58 +01:00
|
|
|
|
|
|
|
- Esegui tutti i test sotto uno specifico namespace:
|
|
|
|
|
|
|
|
`atoum -ns {{namespace}}`
|
|
|
|
|
2022-10-27 18:20:12 +01:00
|
|
|
- Esegui tutti i test con uno specifico tag:
|
2019-05-23 21:43:58 +01:00
|
|
|
|
|
|
|
`atoum -t {{tag}}`
|
|
|
|
|
|
|
|
- Carica un file di bootstrap personalizzato prima di eseguire i test:
|
|
|
|
|
2022-10-20 14:26:58 +01:00
|
|
|
`atoum --bootstrap-file {{percorso/del/file}}`
|