| | |
| | | |
| | | |
| | | /** |
| | | * Tests the {@code isLocal} method for the provided backend. |
| | | * |
| | | * @param b The backend to test. |
| | | */ |
| | | @Test(dataProvider = "backends") |
| | | public void testIsLocal(Backend<?> b) |
| | | { |
| | | b.isLocal(); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Tests the {@code getSupportedControls} method for the provided backend. |
| | | * |
| | | * @param b The backend to test. |
| | |
| | | |
| | | |
| | | /** |
| | | * Tests the {@code supportsFeature} method for the provided backend. |
| | | * |
| | | * @param b The backend to test. |
| | | */ |
| | | @Test(dataProvider = "backends") |
| | | public void testSupportsFeature(Backend<?> b) |
| | | { |
| | | assertFalse(b.supportsFeature("1.2.3.4")); |
| | | } |
| | | |
| | | |
| | | |
| | | /** |
| | | * Tests the {@code supportsLDIFExport} method for the provided backend. |
| | | * |
| | | * @param b The backend to test. |