Hello,
Playing with SVUnit & UVM Mock feature - I see the version I have (Fairly recent one) does not have callback registration to catch "expected" errors and hence am getting test failures (unexpected). I added the below line with a comment and it seems to work.
Is this known? Or is there something I'm missing.
Thanks
Srini
class uvm_report_mock;
static svunit_uvm_report_mock_expected_actual_container reports = new();
static function void setup();
// CVC Srini added
uvm_report_cb::add(null, reports);
reports.delete();
endfunction