class Tryouts::FreshContextFactory

Factory for creating fresh context containers for each test

def containers_created_count

def containers_created_count
  @containers_created
end

def create_container

def create_container
  @containers_created += 1
  Object.new
end

def initialize

def initialize
  @containers_created = 0
end