}
private CUnitTestSuiteSpec createCUnitTestSuite(final NativeComponentSpec testedComponent, Instantiator instantiator, ProjectSourceSet projectSourceSet) {
String suiteName = String.format("%sTest", testedComponent.getName());
String path = testedComponent.getProjectPath();
ComponentSpecIdentifier id = new DefaultComponentSpecIdentifier(path, suiteName);
FunctionalSourceSet testSuiteSourceSet = projectSourceSet.maybeCreate(suiteName);
return instantiator.newInstance(DefaultCUnitTestSuiteSpec.class, id, testedComponent, testSuiteSourceSet);
}