public void TestVerticalLayout()
 {
     AddStep("create component", () =>
     {
         Child = new OverlinedParticipants(Direction.Vertical)
         {
             Anchor = Anchor.Centre,
             Origin = Anchor.Centre,
             Size   = new Vector2(500)
         };
     });
 }
 public void TestHorizontalLayout()
 {
     AddStep("create component", () =>
     {
         Child = new OverlinedParticipants(Direction.Horizontal)
         {
             Anchor       = Anchor.Centre,
             Origin       = Anchor.Centre,
             Width        = 500,
             AutoSizeAxes = Axes.Y,
         };
     });
 }