Beispiel #1
0
 /// <summary>
 /// Given certain conditions.
 /// </summary>
 protected override void Given()
 {
     this.classUnderTest = new RadioStationMapper();
     this.input          = new RadioStation {
         Name = "Radio", Country = new Country()
         {
             Name = "UK"
         }
     };
 }
 /// <summary>
 /// Given certain conditions.
 /// </summary>
 protected override void Given()
 {
     this.classUnderTest = new RadioStationMapper();
     this.input = new RadioStation { Name = "Radio", Country = new Country() { Name = "UK" } };
 }