simon.vergauwen
09/19/2016, 8:28 AMlistOf("<mailto:test@appfoundry.be|test@appfoundry.be>", "<mailto:ttest@fffff.org|ttest@fffff.org>", "<mailto:bbbb@bbbbb.com|bbbb@bbbbb.com>").forEach { email ->
context("$email should show"){
it("works"){
assert(true)
}
}
it("$email should be shown as email") {
mainPresenter.processText(email)
verify(mainView, times(1)).showItem(any<Item>())
}
}
simon.vergauwen
09/19/2016, 8:29 AMsimon.vergauwen
09/19/2016, 8:34 AMsimon.vergauwen
09/19/2016, 8:34 AMorangy
simon.vergauwen
09/19/2016, 8:39 AMsimon.vergauwen
09/19/2016, 8:39 AMsimon.vergauwen
09/19/2016, 8:39 AMsimon.vergauwen
09/19/2016, 8:40 AMdaniel.lindeman
09/23/2016, 11:22 PMhhariri
dmitriy.m
09/25/2016, 6:01 PMorangy
hhariri
eddie
09/25/2016, 6:02 PMmalcolm.newsome
09/25/2016, 6:02 PMmalcolm.newsome
09/25/2016, 6:03 PMhhariri
adambl4
09/25/2016, 6:03 PMhhariri
eddie
09/25/2016, 6:15 PMeddie
09/25/2016, 6:16 PMbeforeEach
should apply to each of its siblings non-recursivelyeddie
09/25/2016, 6:16 PMhhariri
eddie
09/25/2016, 6:17 PMhhariri
eddie
09/25/2016, 6:18 PMeddie
09/25/2016, 6:18 PMadambl4
09/25/2016, 6:25 PMit
block as an unit test and having each
that executes for each group
bring mutabilty to test environment.
In this case we can not guarantee that it
is unit and its result not depends on order of execution, scope depth, etc.hhariri