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