Sha256: 86916f8efd7361a84adef8e56b4caf12b5f44955fb1ff9e3a2bf1f0b970f8422

Contents?: true

Size: 445 Bytes

Versions: 8

Compression:

Stored size: 445 Bytes

Contents

require 'happymapper'
require 'jacoco/model/counter'
require 'jacoco/model/method'

module Jacoco
  # Jacoco line model
  class Line
    include HappyMapper

    tag 'line'

    attribute :line_number, Integer, tag: 'nr'
    attribute :missed_instructions, Integer, tag: 'mi'
    attribute :covered_instructions, Integer, tag: 'ci'
    attribute :missed_branches, Integer, tag: 'mb'
    attribute :covered_branches, Integer, tag: 'cb'
  end
end

Version data entries

8 entries across 8 versions & 1 rubygems

Version Path
danger-jacoco-0.1.4 lib/jacoco/model/line.rb
danger-jacoco-0.1.3 lib/jacoco/model/line.rb
danger-jacoco-0.1.2 lib/jacoco/model/line.rb
danger-jacoco-0.1.1 lib/jacoco/model/line.rb
danger-jacoco-0.1.0 lib/jacoco/model/line.rb
danger-jacoco-0.0.3 lib/jacoco/model/line.rb
danger-jacoco-0.0.2 lib/jacoco/model/line.rb
danger-jacoco-0.0.1 lib/jacoco/model/line.rb