class MimiCheck::Result::Falsified

Attributes

counter_examples[R]
property[R]

Public Class Methods

new(property, counter_examples) click to toggle source
# File lib/mimicheck/result.rb, line 16
def initialize(property, counter_examples)
  @property = property
  @counter_examples = counter_examples
end

Public Instance Methods

==(other) click to toggle source
# File lib/mimicheck/result.rb, line 22
def ==(other)
  return false unless other.is_a?(self.class)
  property == other.property &&
    counter_examples == other.counter_examples
end