Sha256: b00f5f3c009eee50e0ba62ccb187004fdeac3ec27f0c193fa5481dc10e2c03c6

Contents?: true

Size: 1013 Bytes

Versions: 20

Compression:

Stored size: 1013 Bytes

Contents

# encoding: utf-8
# This file is distributed under New Relic's license terms.
# See https://github.com/newrelic/rpm/blob/master/LICENSE for complete details.

class NewRelic::TransactionSample::SubTest < Test::Unit::TestCase
  def setup
    @t = NewRelic::TransactionSample.new

    @t.params[:test] = "hi"

    s1 = @t.create_segment(1.0, "controller")

    @t.root_segment.add_called_segment(s1)

    s2 = @t.create_segment(2.0, "AR1")

    s2.params[:test] = "test"

    s1.add_called_segment(s2)
    s2.end_trace 3.0
    s1.end_trace 4.0

    s3 = @t.create_segment(4.0, "post_filter")
    @t.root_segment.add_called_segment(s3)
    s3.end_trace 6.0

    s4 = @t.create_segment(6.0, "post_filter")
    @t.root_segment.add_called_segment(s4)
    s4.end_trace 7.0
  end

  def test_exclusive_duration
    s1 = @t.root_segment.called_segments.first
    assert_equal 3.0, s1.duration
    assert_equal 2.0, s1.exclusive_duration
  end

  def test_count_the_segments
    assert_equal 4, @t.count_segments
  end
end

Version data entries

20 entries across 20 versions & 1 rubygems

Version Path
newrelic_rpm-3.7.1.188 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.7.1.182 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.7.1.180 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.7.0.177 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.7.0.174.beta test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.9.171 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.8.168 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.8.164 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.7.159 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.7.159.beta test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.7.152 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.6.147 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.5.130 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.4.122 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.4.113.beta test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.3.111 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.3.106 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.3.105.beta test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.3.104 test/new_relic/transaction_sample_subtest_test.rb
newrelic_rpm-3.6.3.103.beta test/new_relic/transaction_sample_subtest_test.rb