You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/// #A `TestOptions` defines a set of options for the test which will be merged with the common test inputs to define the command line for the performance test.
46
46
#[derive(Debug,Default,Clone)]
47
-
pubstructTestOption{
47
+
pubstructPerfTestOption{
48
48
/// The name of the test option. This is used as the key in the `TestArguments` map.
49
49
pubname:&'staticstr,
50
50
@@ -112,7 +112,7 @@ impl From<&ArgMatches> for PerfRunnerOptions {
112
112
#[derive(Debug,Clone)]
113
113
pubstructPerfRunner{
114
114
options:PerfRunnerOptions,
115
-
tests:Vec<TestMetadata>,
115
+
tests:Vec<PerfTestMetadata>,
116
116
arguments:ArgMatches,
117
117
package_dir:&'staticstr,
118
118
module_name:&'staticstr,
@@ -123,7 +123,7 @@ impl PerfRunner {
123
123
pubfnnew(
124
124
package_dir:&'staticstr,
125
125
module_name:&'staticstr,
126
-
tests:Vec<TestMetadata>,
126
+
tests:Vec<PerfTestMetadata>,
127
127
) -> azure_core::Result<Self>{
128
128
let command = Self::get_command_from_metadata(&tests);
129
129
let arguments = command.get_matches();
@@ -141,7 +141,7 @@ impl PerfRunner {
141
141
pubfnwith_command_line(
142
142
package_dir:&'staticstr,
143
143
module_name:&'staticstr,
144
-
tests:Vec<TestMetadata>,
144
+
tests:Vec<PerfTestMetadata>,
145
145
args:Vec<&str>,
146
146
) -> azure_core::Result<Self>{
147
147
let command = Self::get_command_from_metadata(&tests);
0 commit comments