class Cucumber::Core::Test::Case::NameBuilder

def examples_table(table)

def examples_table(table)
  name = table.name.strip
  name = table.keyword if name.length == 0
  @result = ", #{name}" + @result
  self
end

def examples_table_row(row)

def examples_table_row(row)
  @result = " (row #{row.number})"
  self
end

def feature(*)

def feature(*)
  self
end

def initialize(test_case)

def initialize(test_case)
  test_case.describe_source_to self
end

def scenario(scenario)

def scenario(scenario)
  @result = "#{scenario.keyword}: #{scenario.name}"
  self
end

def scenario_outline(outline)

def scenario_outline(outline)
  @result = "#{outline.keyword}: #{outline.name}" + @result
  self
end