mirror of https://github.com/XS-MLVP/picker.git
15 lines
363 B
Java
15 lines
363 B
Java
package com.ut;
|
|
|
|
import com.ut.{{__TOP_MODULE_NAME__}}.UT_{{__TOP_MODULE_NAME__}};
|
|
|
|
public class example {
|
|
public static void main(String[] args) {
|
|
UT_{{__TOP_MODULE_NAME__}} dut = new UT_{{__TOP_MODULE_NAME__}}();
|
|
for(int i = 0; i<10; i++){
|
|
dut.Step();
|
|
}
|
|
dut.Finish();
|
|
System.out.println("Step {{__TOP_MODULE_NAME__}} 10 times complete");
|
|
}
|
|
}
|