01: /*--------------------------------------------------------------------------*
02: | Copyright (C) 2006 Christopher Kohlhaas |
03: | |
04: | This program is free software; you can redistribute it and/or modify |
05: | it under the terms of the GNU General Public License as published by the |
06: | Free Software Foundation. A copy of the license has been included with |
07: | these distribution in the COPYING file, if not go to www.fsf.org |
08: | |
09: | As a special exception, you are granted the permissions to link this |
10: | program with every library, which license fulfills the Open Source |
11: | Definition as published by the Open Source Initiative (OSI). |
12: *--------------------------------------------------------------------------*/
13: package org.rapla.storage.dbfile.tests;
14:
15: import org.rapla.ServerTest;
16: import org.rapla.storage.CachableStorageOperator;
17:
18: public class FileOperatorRemoteTest extends ServerTest {
19: CachableStorageOperator operator;
20:
21: public FileOperatorRemoteTest(String name) {
22: super (name);
23: }
24:
25: protected String getStorageName() {
26: return "storage-file";
27: }
28:
29: }
|