1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-21 22:47:24 +08:00

Fix assertions.

This commit is contained in:
smoogipooo 2017-04-06 11:54:05 +09:00
parent acfcd30cc6
commit 2a16eafe8f

View File

@ -136,12 +136,12 @@ namespace osu.Game.Tests.Beatmaps.Formats
Assert.IsNotNull(slider);
Assert.AreEqual(new Vector2(192, 168), slider.Position);
Assert.AreEqual(956, slider.StartTime);
Assert.IsTrue(slider.Samples.Any(s => s.Name == @"normal"));
Assert.IsTrue(slider.Samples.Any(s => s.Name == @"hitnormal"));
var hit = beatmap.HitObjects[1] as LegacyHit;
Assert.IsNotNull(hit);
Assert.AreEqual(new Vector2(304, 56), hit.Position);
Assert.AreEqual(1285, hit.StartTime);
Assert.IsTrue(hit.Samples.Any(s => s.Name == @"clap"));
Assert.IsTrue(hit.Samples.Any(s => s.Name == @"hitclap"));
}
}
}