Skip to content

Commit

Permalink
New translations automatic-testing.md (Italian)
Browse files Browse the repository at this point in the history
  • Loading branch information
FabricMCBot committed Dec 7, 2024
1 parent 2dd7a55 commit 55a3fe8
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions translated/it_it/develop/automatic-testing.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Una convenzione per i nomi è quella di rispecchiare la struttura del package de

Un'altra convenzione è avere un package `test`, quindi `src/test/java/com/example/docs/test/codec/BeanTypeTest.java`. Questo previene alcuni problemi dovuti all'uso dello stesso package se usi i moduli Java.

Dopo aver creato la classe di test, usa <kbd>⌘/CTRL</kbd><kbd>N</kbd> per aprire il menu Generate. Seleziona Test e comincia a scrivere il nome del tuo metodo, che di solito inizia con `test`. Premi <kbd>Invio</kbd> quando hai fatto. Per altri trucchi riguardo all'ambiente di sviluppo, vedi [Trucchi Riguardanti l'IDE](ide-tips-and-tricks#code-generation).
Dopo aver creato la classe di test, usa <kbd>⌘/CTRL</kbd><kbd>N</kbd> per aprire il menu Generate. Seleziona Test e comincia a scrivere il nome del tuo metodo, che di solito inizia con `test`. Premi <kbd>Invio</kbd> quando hai fatto. Per altri trucchi riguardo all'ambiente di sviluppo, vedi [Trucchi Riguardanti l'IDE](./ide-tips-and-tricks#code-generation).

![Generare un metodo di test](/assets/develop/misc/automatic-testing/unit_testing_01.png)

Expand All @@ -57,7 +57,7 @@ Ora è il tempo di scrivere il tuo codice di test effettivo. Puoi assicurare con

@[code lang=java transcludeWith=:::automatic-testing:4](@/reference/latest/src/test/java/com/example/docs/codec/BeanTypeTest.java)

Per una spiegazione di cosa fa questo codice, leggi [Codec](codecs#registry-dispatch).
Per una spiegazione di cosa fa questo codice, consulta la pagina [Codec](./codecs#registry-dispatch).

#### Impostare le Registry {#setting-up-registries}

Expand All @@ -80,12 +80,12 @@ I tuoi test ora verranno eseguiti ad ogni build, incluse quelle di fornitori CI
Aggiungi questo al tuo file `.github/workflows/build.yml`, sotto alla fase `./gradlew build`.

```yaml
- name: Store reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: reports
path: |
**/build/reports/
**/build/test-results/
- name: Store reports
if: failure()
uses: actions/upload-artifact@v4
with:
name: reports
path: |
**/build/reports/
**/build/test-results/
```

0 comments on commit 55a3fe8

Please sign in to comment.