|
|
|
@ -6,11 +6,11 @@ public static class CfTestUtils
|
|
|
|
|
{
|
|
|
|
|
public static QualityProfileCustomFormatScoreMapping NewMapping(params FormatMappingEntry[] entries)
|
|
|
|
|
{
|
|
|
|
|
return new(false) {Mapping = entries.ToList()};
|
|
|
|
|
return new QualityProfileCustomFormatScoreMapping(false) {Mapping = entries.ToList()};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static QualityProfileCustomFormatScoreMapping NewMappingWithReset(params FormatMappingEntry[] entries)
|
|
|
|
|
{
|
|
|
|
|
return new(true) {Mapping = entries.ToList()};
|
|
|
|
|
return new QualityProfileCustomFormatScoreMapping(true) {Mapping = entries.ToList()};
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|