blob: 1fbde28a08cf4d0fc3ecb7fe4060fc92015da611 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
|
/*-
* See the file LICENSE for redistribution information.
*
* Copyright (c) 2002,2009 Oracle. All rights reserved.
*
* $Id: DualTestCase.java,v 1.6 2009/01/13 10:41:22 cwl Exp $
*/
package com.sleepycat.db.util;
import java.io.File;
import java.io.FileNotFoundException;
import junit.framework.TestCase;
import com.sleepycat.db.DatabaseException;
import com.sleepycat.db.Environment;
import com.sleepycat.db.EnvironmentConfig;
public class DualTestCase extends TestCase {
private Environment env;
private boolean setUpInvoked = false;
public DualTestCase() {
super();
}
protected DualTestCase(String name) {
super(name);
}
@Override
protected void setUp()
throws Exception {
setUpInvoked = true;
super.setUp();
}
@Override
protected void tearDown()
throws Exception {
if (!setUpInvoked) {
throw new IllegalStateException
("tearDown was invoked without a corresponding setUp() call");
}
destroy();
super.tearDown();
}
protected Environment create(File envHome, EnvironmentConfig envConfig)
throws DatabaseException {
try {
env = new Environment(envHome, envConfig);
} catch (FileNotFoundException e) {
throw new RuntimeException(e);
}
return env;
}
protected void close(Environment environment)
throws DatabaseException {
env.close();
env = null;
}
protected void destroy()
throws Exception {
if (env != null) {
try {
/* Close in case we hit an exception and didn't close */
env.close();
} catch (RuntimeException e) {
/* OK if already closed */
}
env = null;
}
}
public static boolean isReplicatedTest(Class<?> testCaseClass) {
return false;
}
}
|