blob: 4f3de971c91cf1e1c76ab4798f977cc3b1edbb35 [file] [log] [blame]
package org.testng.internal;
import com.google.inject.Inject;
import com.google.inject.internal.Nullable;
import org.testng.IObjectFactory;
import org.testng.internal.annotations.IAnnotationFinder;
public class Configuration implements IConfiguration {
@Inject
IAnnotationFinder m_annotationFinder;
@Inject
@Nullable
IObjectFactory m_objectFactory;
public IAnnotationFinder getAnnotationFinder() {
return m_annotationFinder;
}
public IObjectFactory getObjectFactory() {
return m_objectFactory;
}
}