Show the compare to feature

In order to show the compare to features of SpecFlow Assist
As a SpecFlow evanglist
I want to show how the different versions of compareTo works

  • CompareToInstance

    • Given I have the following person
      FieldValue
      NameMarcus
      StyleButch
      Birth date1972-10-09
    • Then CompareToInstance should match this guy
      FieldValue
      NameMarcus
      StyleButch
      BirthDate10/9/1972 12:00:00 AM
    • And CompareToInstance should match this guy
      FieldValue
      NameMarcus
      BirthDate10/9/1972 12:00:00 AM
    • But CompareToInstance should not match this guy# CompareToSet will test only the properties that you define in the table.
      # CompareToSet does not test the order of the objects, only that one was found that matches
      FieldValue
      NameAnders
      Stylevery cool
      BirthDate10/9/1974 12:00:00 AM
  • CompareToSet

    • Given I have the following persons using assist
      NameStyleBirth date
      MarcusCool1972-10-09
      AndersButch1977-01-01
      JockeSoft1974-04-04
    • Then CompareToSet should match this
      NameStyleBirthDate
      MarcusCool10/9/1972 12:00:00 AM
      AndersButch1/1/1977 12:00:00 AM
      JockeSoft4/4/1974 12:00:00 AM
    • But CompareToSet should not match this
      NameStyleBirthDate
      MarcusCool10/9/1972 12:00:00 AM
      AndersButch1/1/1977 12:00:00 AM