URL
https://opencores.org/ocsvn/lpffir/lpffir/trunk
Subversion Repositories lpffir
[/] [lpffir/] [trunk/] [uvm/] [rca_uvm/] [generated_tb/] [tb/] [top_test/] [sv/] [top_test.sv] - Rev 5
Compare with Previous | Blame | View Log
// You can insert code here by setting file_header_inc in file common.tpl//=============================================================================// Project : generated_tb//// File Name: top_test.sv////// Version: 1.0//// Code created by Easier UVM Code Generator version 2016-04-18-EP on Tue Mar 19 21:50:30 2019//=============================================================================// Description: Test class for top (included in package top_test_pkg)//=============================================================================`ifndef TOP_TEST_SV`define TOP_TEST_SV// You can insert code here by setting test_inc_before_class in file common.tplclass top_test extends uvm_test;`uvm_component_utils(top_test)top_env m_env;extern function new(string name, uvm_component parent);// You can remove build_phase method by setting test_generate_methods_inside_class = no in file common.tplextern function void build_phase(uvm_phase phase);// You can insert code here by setting test_inc_inside_class in file common.tplendclass : top_testfunction top_test::new(string name, uvm_component parent);super.new(name, parent);endfunction : new// You can remove build_phase method by setting test_generate_methods_after_class = no in file common.tplfunction void top_test::build_phase(uvm_phase phase);// You can insert code here by setting test_prepend_to_build_phase in file common.tpl// You could modify any test-specific configuration object variables herem_env = top_env::type_id::create("m_env", this);// You can insert code here by setting test_append_to_build_phase in file common.tplendfunction : build_phase// You can insert code here by setting test_inc_after_class in file common.tpl`endif // TOP_TEST_SV
