}
@Test
public void helloWorld2() {
FF4j ff4j = new FF4j("ff4j.xml");
// Work with it
if (ff4j.check("AwesomeFeature")) {
// System.out.println("Hello the feature is enabled");
}
// Its does not exist
try {
if (ff4j.check("do-not-exit")) {}
} catch (FeatureNotFoundException fnfe) {
// System.out.println(fnfe.getMessage());
}
ff4j.autoCreate(true);
// no more exception but returning false
if (ff4j.check("do-not-exit")) {}
}