Exemplo n.º 1
0
 public static object GetContextKey(this ScenarioContext context, ContextKey key)
 {
     return(GetContextKey(context, key.ToString()));
 }
Exemplo n.º 2
0
 public static void SetContextKey(this ScenarioContext context, ContextKey key, object keyValue)
 {
     SetContextKey(context, key.ToString(), keyValue);
 }
Exemplo n.º 3
0
 public static bool ContainsKey(this ScenarioContext context, ContextKey key)
 {
     return(context.ContainsKey(key.ToString()));
 }