FileDocCategorySizeDatePackage
FSDirectoryTestCase.javaAPI DocApache Lucene 1.4.3578Mon Jun 14 02:16:06 BST 2004org.apache.lucene.index.store

FSDirectoryTestCase

public abstract class FSDirectoryTestCase extends TestCase

Fields Summary
private FSDirectory
directory
Constructors Summary
Methods Summary
protected final org.apache.lucene.store.FSDirectorygetDirectory()

    return getDirectory(false);
  
protected final org.apache.lucene.store.FSDirectorygetDirectory(boolean create)

    if (directory == null) {
      directory = FSDirectory.getDirectory(System.getProperty("test.index.dir"), create);
    }

    return directory;