Skip to content

Commit

Permalink
added test for not implemented methods
Browse files Browse the repository at this point in the history
  • Loading branch information
tannalynn committed Jan 20, 2023
1 parent fbccb6e commit e675cb8
Showing 1 changed file with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,16 @@ def test_finish_logs_notification_error
end
logger.verify
end

def test_not_implemented_methods
assert_raises NotImplementedError do
@subscriber.start_segment(nil, nil, nil)
end

assert_raises NotImplementedError do
@subscriber.finish_segment(nil, nil, nil)
end
end
end
end
end
Expand Down

0 comments on commit e675cb8

Please sign in to comment.