# File lib/cucumber/formatter/junit.rb, line 85
      def after_table_row(table_row)
        if @outline
          duration = Time.now - @table_start
          unless @header_row
            name_suffix = " (outline example : #{table_row.name})"
            if table_row.failed?
              @output += "Example row: #{table_row.name}\n"
              @output += "\nMessage:\n"
            end
            build_testcase(duration, table_row.status, table_row.exception,  name_suffix)
          end
        end
        @header_row = false
      end