July 1, 2015
4:44 p.m.
On 01 Jul 2015, at 18:24, Peter Uhnák <i.uhnak@gmail.com> wrote:
Is it possible to skip whole class from testing? I could do "self skip" for individual methods, but the problems arise even in setUp so I would like to stop the whole class from being tested. Is that possbile?
Yes it is: put a âself skipâ in the setUp method :) Camille
Thanks, Peter