Exemplo n.º 1
0
 private static Wheel<int> Setup()
 {
     var wheel = new Wheel<int>();
     wheel.Push(1);
     wheel.Push(2);
     wheel.Push(3);
     return wheel;
 }