Skip to content
#

contract

Here are 332 public repositories matching this topic...

authorjapps
authorjapps commented Aug 5, 2020

As a SDET
I want a documentation or Wiki page where the expected vs actual field matching is explained
So that I can use these in my test automation to test the server response payloads and headers
e.g. id=123 , id="123", isValid=true, isValid="true" etc

AC1:

Cover the following currently supported mechanisms with examples

  • $EQ
  • (int)
  • (float) or (decimal)
  • (boolean)
amantinband
amantinband commented Mar 16, 2022

Add the following extensions methods for dictionaries:

var dictionary = new Dictionary<string, string>
{
    ["key1"] = "value1",
    ["key2"] = "value2",
};

dictionary.Throw().IfContainsKey("key1");
dictionary.Throw().IfNotContainsKey("key3");

And the corresponding dictionary properties extension methods:

var dictionary = new Dictionary<string, string
enhancement good first issue

Improve this page

Add a description, image, and links to the contract topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the contract topic, visit your repo's landing page and select "manage topics."

Learn more