mirror of https://github.com/ppy/osu
Use expression body
This commit is contained in:
parent
431834fc2f
commit
379c9e8b7c
|
@ -22,10 +22,7 @@ public class CatchBeatmapConversionTest : BeatmapConversionTest<ConvertValue>
|
|||
[TestCase("spinner")]
|
||||
[TestCase("spinner-and-circles")]
|
||||
[TestCase("slider")]
|
||||
public void Test(string name)
|
||||
{
|
||||
base.Test(name);
|
||||
}
|
||||
public void Test(string name) => base.Test(name);
|
||||
|
||||
protected override IEnumerable<ConvertValue> CreateConvertValue(HitObject hitObject)
|
||||
{
|
||||
|
|
|
@ -20,10 +20,7 @@ public class ManiaBeatmapConversionTest : BeatmapConversionTest<ManiaConvertMapp
|
|||
protected override string ResourceAssembly => "osu.Game.Rulesets.Mania";
|
||||
|
||||
[TestCase("basic")]
|
||||
public void Test(string name)
|
||||
{
|
||||
base.Test(name);
|
||||
}
|
||||
public void Test(string name) => base.Test(name);
|
||||
|
||||
protected override IEnumerable<ConvertValue> CreateConvertValue(HitObject hitObject)
|
||||
{
|
||||
|
|
|
@ -20,10 +20,7 @@ public class TaikoBeatmapConversionTest : BeatmapConversionTest<ConvertValue>
|
|||
[NonParallelizable]
|
||||
[TestCase("basic")]
|
||||
[TestCase("slider-generating-drumroll")]
|
||||
public void Test(string name)
|
||||
{
|
||||
base.Test(name);
|
||||
}
|
||||
public void Test(string name) => base.Test(name);
|
||||
|
||||
protected override IEnumerable<ConvertValue> CreateConvertValue(HitObject hitObject)
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue