Skip to content

Latest commit

 

History

History
21 lines (15 loc) · 499 Bytes

File metadata and controls

21 lines (15 loc) · 499 Bytes

Teste

não pode esquecer de:

  • habilitar testes um JUnit Jupiter na aba Testing
  • importar as classes de @Test (import org.junit.jupiter.api.Test;) e de assertEquals (import static org.junit.jupiter.api.Assertions.*;)

Criar projeto Java

  • abrir paleta de comando (Ctrl + Shift + P)
  • iniciar projeto java

e pronto, já vem com as pastar separadinhas pra mim :D

Se .gitignore não funcionar

git rm -r --cached .
git status
git add .
git commit -m 'fixed untracked files'