TestBase.Compare C# (CSharp) Method

Compare() protected method

protected Compare ( Thing, thing1, Thing, thing2 ) : bool
thing1 Thing,
thing2 Thing,
return bool
    protected bool Compare(Thing thing1, Thing thing2)
    {
        return Equals(thing1, thing2) && thing1.Title == thing2.Title && thing1.CreatedAt == thing2.CreatedAt && thing1.UpdatedAt == thing2.UpdatedAt;
    }