IntroductionGetting StartedFat ConfigConceptsFat LabelFat WarmupFat EnvDataSkip TestSkip test casesSkip all tests from FatTestFat InterceptorAPISamplesFat Logging
Skip Test
Skip test cases
using Yontech.Fat;using Yontech.Fat.Labels;// ...public class MyTestCases : FatTest{[SkipTest]public void Test_this_is_skipped(){}public void Test_this_will_run(){}}
Skip all tests from FatTest
using Yontech.Fat;using Yontech.Fat.Labels;// ...[SkipTest]public class MyTestCases : FatTest{public void Test_this_will_be_skipped(){}public void Test_this_will_also_be_skipped(){}}