In reply to Dharak Modi:
class abc_test extends abc_base_test;
`uvm_component_utils(abc_test)
string report_id = “abc_test”;
rand int write_client_select;
write_client_select = ($urandom_range(1,10));**
I want to select random values from different set of values for “int write_client_select” such as 0,2,4,7,12,16,… and not range. and I want to use this randomly selected value later on in build and run phase.
What is the way to do it?