class Honeybadger::CLI::Test::TestBackend

def self.callings

def self.callings
  @callings ||= Hash.new {|h,k| h[k] = [] }
end

def initialize(backend)

def initialize(backend)
  @backend = backend
end

def notify(feature, payload)

def notify(feature, payload)
  response = @backend.notify(feature, payload)
  self.class.callings[feature] << [payload, response]
  response
end