* @throws FileNotFoundException
*/
@Test
public void testGribExtension() {
// Creation of a NetCDFDriver
NetCDFDriver driver = new NetCDFDriver();
// Selection of the extensions used by the NetCDF driver
List<String> extensions = driver.getFileExtensions();
// Creation of a list of the grib extensions
List<String> possibleExt = Arrays.asList(new String[] { "grb", "grb2", "grib" });
// Check if the extensions are contained
Assert.assertTrue(extensions.containsAll(possibleExt));