Guest User

Untitled

a guest
Nov 19th, 2018
93
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. [Given(@"I have a source USQL row with the column name (.*) and double value of (.*)")]
  2. public void GivenIHaveASourceUSQLRowWithTheColumnNameAndDoubleValueOf(string name, double? doubleValue)
  3. {
  4. this.context["DoubleValue"] = doubleValue;
  5. this.context["UsqlColumnName"] = name;
  6. }
Add Comment
Please, Sign In to add comment