Exemple #1
0
 public void GetMetricTypeSpecifierArgumentOutOfRangeException(int metricType)
 {
     Assert.Catch <ArgumentOutOfRangeException>(() =>
     {
         MetricSerializer.GetMetricTypeSpecifier((MetricType)metricType);
     });
 }
Exemple #2
0
 public string GetMetricTypeSpecifier(int metricType)
 {
     return(MetricSerializer.GetMetricTypeSpecifier((MetricType)metricType));
 }