use of org.python.pydev.editor.codecompletion.proposals.DefaultCompletionProposalFactory in project Pydev by fabioz.
the class PyCreateClassTest method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
CompletionProposalFactory.set(new DefaultCompletionProposalFactory());
}
use of org.python.pydev.editor.codecompletion.proposals.DefaultCompletionProposalFactory in project Pydev by fabioz.
the class AssistAssignTest method setUp.
/*
* @see TestCase#setUp()
*/
@Override
protected void setUp() throws Exception {
super.setUp();
assist = new AssistAssign(new CamelCodingStd());
CompletionProposalFactory.set(new DefaultCompletionProposalFactory());
}
use of org.python.pydev.editor.codecompletion.proposals.DefaultCompletionProposalFactory in project Pydev by fabioz.
the class AssistFStringTest method setUp.
/*
* @see TestCase#setUp()
*/
@Override
protected void setUp() throws Exception {
super.setUp();
assist = new AssistFString();
CompletionProposalFactory.set(new DefaultCompletionProposalFactory());
}
use of org.python.pydev.editor.codecompletion.proposals.DefaultCompletionProposalFactory in project Pydev by fabioz.
the class AssistSurroundWithTest method setUp.
@Override
protected void setUp() throws Exception {
super.setUp();
CompletionProposalFactory.set(new DefaultCompletionProposalFactory());
}
use of org.python.pydev.editor.codecompletion.proposals.DefaultCompletionProposalFactory in project Pydev by fabioz.
the class CodeCompletionTestsBase method setUp.
/*
* @see TestCase#setUp()
*/
@Override
public void setUp() throws Exception {
super.setUp();
CompletionProposalFactory.set(new DefaultCompletionProposalFactory());
PydevPlugin.setBundleInfo(new BundleInfoStub());
CorePlugin.setBundleInfo(new BundleInfoStub());
ProjectModulesManager.IN_TESTS = true;
FileUtils.IN_TESTS = true;
PydevTestUtils.setTestPlatformStateLocation();
}
Aggregations