FileCodebaseCreator cc = new FileCodebaseCreator();
// Validate parameters.
ImmutableMap<String, String> s;
try {
cc.create(ImmutableMap.<String, String>of());
fail("Method does not check for required options.");
} catch (CodebaseCreationError expected) {}
try {
cc.create(ImmutableMap.<String, String>of("path", "FooBar", "unknown", "123"));