Пример #1
0
 /// <summary>
 /// Gets the property of the specified type with the specified key.
 /// </summary>
 /// <typeparam name="TProperty">The type of the property.</typeparam>
 /// <param name="fixture">The fixture.</param>
 /// <param name="key">The key.</param>
 /// <param name="property">The property.</param>
 /// <returns></returns>
 public static IMvcFunctionalTestFixture HavingConfiguredProperty <TProperty>(
     this IMvcFunctionalTestFixture fixture,
     string key,
     out TProperty property)
 {
     property = fixture.GetProperty <TProperty>(key);
     return(fixture);
 }