# File lib/cucumber/wire_support/wire_packet.rb, line 7
        def parse(raw)
          attributes = JSON.parse(raw.strip)
          message = attributes[0]
          params  = attributes[1]
          new(message, params)
        end