`timescale 1ns/1ps
`include "uvm_macros.svh"
import uvm_pkg::*;

class command_test extends uvm_test;
  `uvm_component_utils(command_test)
  function new(string name, uvm_component parent); super.new(name, parent); endfunction
  function void check_phase(uvm_phase phase);
    uvm_bitstream_t value;
    bit found = uvm_config_db#(uvm_bitstream_t)::get(this, "", "wide_value", value);
    $display("REVIEW|config_found|%0d", found);
    $display("REVIEW|config_low64|%016h", value[63:0]);
    $display("REVIEW|done|1");
  endfunction
endclass
module command_probe;
  initial run_test("command_test");
endmodule
