Hi! When running tests, whats the difference betwe...
# ktor
q
Hi! When running tests, whats the difference between
TestApplicationEngine
and
withTestApplication
? Also do I have to call
server.start
with
TestApplicationEngine
?
c
withTestApplication
creates
TestApplicationEngine
under the hood. It also does start and stop.
Most likely you don't need to create TestApplicationEngine manually