use of com.facebook.buck.cli.FakeBuckConfig in project buck by facebook.
the class WorkspaceAndProjectGeneratorTest method setUp.
@Before
public void setUp() throws InterruptedException, IOException {
rootCell = (new TestCellBuilder()).build();
ProjectFilesystem projectFilesystem = rootCell.getFilesystem();
halideBuckConfig = HalideLibraryBuilder.createDefaultHalideConfig(projectFilesystem);
cxxBuckConfig = CxxLibraryBuilder.createDefaultConfig();
BuckConfig fakeBuckConfig = FakeBuckConfig.builder().build();
appleConfig = new AppleConfig(fakeBuckConfig);
swiftBuckConfig = new SwiftBuckConfig(fakeBuckConfig);
setUpWorkspaceAndProjects();
}
Aggregations