private final Attributes attributes = new AttributesImpl();
TestContextImpl(PluginManager<TestPlugin> pluginManager, Object testInstance) {
notNull("Plugin manager", pluginManager);
notNull("Test instance", testInstance);
this.introspector = new Introspector(testInstance);
this.pluginManager = pluginManager;
LOGGER.debug("Creating new Test Context for test {0}#{1,number,#}", this.introspector.testClass().getName(), this.introspector.instance().hashCode());
Mycila.registerContext(this);
}