blob: 06ff37d9532424298a1ef802f766d12bf6ed2e29 [file] [log] [blame]
Neels Hofmeyr9596b212020-12-02 09:39:01 +01001from osmo_gsm_tester.testenv import *
2
3with test.report_fragment('fragment1'):
4 print('a step in the first fragment')
5
6with test.report_fragment('fragment2'):
7 print('a step in the second fragment')
8
9with test.report_fragment('fragment3'):
10 print('a step in the third fragment')
11 raise Exception('failure in the third fragment')