Testando Código Assíncrono
Verifique fluxos de async/await com confiabilidade.
Testando Código Assíncrono é uma aula grátis de SwiftUI Academy no CoddyKit. Esta é a aula 2 de 4. Você pode ler a aula completa abaixo gratuitamente — depois pratica ao vivo no navegador com um editor de código integrado e um tutor de IA 24/7. Faz parte do caminho de aprendizado de SwiftUI Academy, e seu progresso é sincronizado entre a web e o app CoddyKit. O curso de SwiftUI Academy inclui 4 aulas no total.
Partes desta aula ainda não foram traduzidas e aparecem em inglês.
Async Needs Special Care
Network calls and tasks finish later, not instantly. Your tests must wait for the result before asserting, or they check too early. ⏳
Mark the Test async
The simplest fix is an async test method. Swift lets you await directly, and the runner pauses until the work completes.
func testLoad() async {
}Await Your Method
Inside an async test you can use await just like real code. The line pauses until your ViewModel finishes loading.
await vm.load()Assert After Awaiting
Once the await returns, the data is ready. Now your assertion checks the final state, not an empty one. ✅
XCTAssertEqual(vm.items.count, 3)Throwing Async Tests
If the code can throw, mark the test throws too. Then try await lets errors bubble up and fail the test cleanly.
func testFetch() async throws {
try await vm.fetch()
}Avoid Real Networks
Hitting a live server makes tests slow and flaky. Inject a mock service that returns fixed data instead.
A Mock Service
A mock conforms to the same protocol but returns canned values. Your ViewModel cannot tell the difference, so the logic is tested honestly.
struct MockAPI: API {
func load() async -> [Item] { sample }
}Testing the Error Path
Make your mock throw on demand. Then you can verify the ViewModel sets an error state instead of crashing.
Expectations for Callbacks
For older callback APIs, use an XCTestExpectation. Fulfill it inside the callback, then wait so the test does not end early.
let exp = expectation(description: "done")Wait With a Timeout
Pair every expectation with a timeout. If the callback never fires, the test fails fast instead of hanging forever.
await fulfillment(of: [exp], timeout: 2)Prefer async Over Callbacks
When you can, write code with async/await. Tests stay short, linear, and far easier to read than nested callbacks.
Quick Check
How should you wait for async work in a modern XCTest?
Recap
You can now test async code: mark tests async, await results, mock the network, and use expectations for callbacks. Reliable every run. 🎉
Perguntas Frequentes
A aula “Testando Código Assíncrono” é grátis?
Sim — o texto completo de “Testando Código Assíncrono” é grátis para ler aqui na web. Para praticá-la interativamente (um editor de código integrado e um tutor de IA 24/7) e desbloquear o restante do curso de SwiftUI Academy, atualize para CoddyKit PRO. O curso de SwiftUI Academy inclui 4 aulas no total.
O que vou aprender em “Testando Código Assíncrono”?
Verifique fluxos de async/await com confiabilidade. Você pratica SwiftUI Academy com código prático que executa diretamente no navegador, e um tutor de IA 24/7 responde suas dúvidas enquanto trabalha na aula.
Preciso ter experiência prévia para começar SwiftUI Academy?
Nenhuma experiência prévia é necessária. SwiftUI Academy no CoddyKit é estruturado para alunos iniciantes até avançados, então você pode começar aqui ou desde o início e aprender no seu ritmo. Esta é a aula 2 de 4.
Quanto tempo leva a aula “Testando Código Assíncrono”?
A maioria das aulas CoddyKit leva cerca de 5–10 minutos. Cada uma é compacta e interativa, então você faz progresso constante e retoma exatamente de onde parou entre web e app.
Posso escrever e executar código nesta aula de SwiftUI Academy?
Sim. Cada aula de SwiftUI Academy inclui um editor de código integrado, então você escreve e executa código real direto no navegador e recebe feedback de IA instantaneamente — nenhuma configuração local necessária.
Todas as aulas deste curso
- Testes Unitários de ViewModels
- Testando Código Assíncrono
- Testes de Interface com XCUITest
- Testes Baseados em Snapshots e Previews