| 1 |
|
|
| 2 |
|
|
| 3 |
|
|
| 4 |
|
|
| 5 |
|
|
| 6 |
|
|
| 7 |
|
|
| 8 |
|
|
| 9 |
|
|
| 10 |
|
|
| 11 |
|
|
| 12 |
|
|
| 13 |
|
|
| 14 |
|
|
| 15 |
|
|
| 16 |
|
package org.qedeq.kernel.bo.test; |
| 17 |
|
|
| 18 |
|
import java.io.File; |
| 19 |
|
import java.io.IOException; |
| 20 |
|
import java.net.URL; |
| 21 |
|
import java.util.Map; |
| 22 |
|
|
| 23 |
|
import org.qedeq.kernel.base.module.Specification; |
| 24 |
|
import org.qedeq.kernel.bo.QedeqBo; |
| 25 |
|
import org.qedeq.kernel.bo.module.InternalKernelServices; |
| 26 |
|
import org.qedeq.kernel.bo.module.KernelQedeqBo; |
| 27 |
|
import org.qedeq.kernel.bo.module.QedeqFileDao; |
| 28 |
|
import org.qedeq.kernel.common.ModuleAddress; |
| 29 |
|
import org.qedeq.kernel.common.SourceFileExceptionList; |
| 30 |
|
|
|
|
|
| 0% |
Uncovered Elements: 43 (43) |
Complexity: 24 |
Complexity Density: 1.26 |
|
| 31 |
|
public class DummyInternalKernalServices implements InternalKernelServices { |
| 32 |
|
|
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 33 |
0
|
public File getBufferDirectory() {... |
| 34 |
0
|
return null; |
| 35 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 36 |
0
|
public File getGenerationDirectory() {... |
| 37 |
0
|
return null; |
| 38 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 39 |
0
|
public File getLocalFilePath(ModuleAddress address) {... |
| 40 |
0
|
return null; |
| 41 |
|
} |
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 42 |
0
|
public void startupServices() {... |
| 43 |
|
} |
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 44 |
0
|
public void removeAllModules() {... |
| 45 |
|
} |
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 46 |
0
|
public void clearLocalBuffer() throws IOException {... |
| 47 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 48 |
0
|
public QedeqBo loadModule(ModuleAddress address) {... |
| 49 |
0
|
return null; |
| 50 |
|
} |
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 51 |
0
|
public void loadRequiredModules(ModuleAddress address) throws SourceFileExceptionList {... |
| 52 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 53 |
0
|
public boolean loadAllModulesFromQedeq() {... |
| 54 |
0
|
return false; |
| 55 |
|
} |
|
|
|
| - |
Uncovered Elements: 0 (0) |
Complexity: 1 |
Complexity Density: - |
|
| 56 |
0
|
public void removeModule(ModuleAddress address) {... |
| 57 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 58 |
0
|
public ModuleAddress[] getAllLoadedModules() {... |
| 59 |
0
|
return null; |
| 60 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 61 |
0
|
public QedeqBo getQedeqBo(ModuleAddress address) {... |
| 62 |
0
|
return null; |
| 63 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 64 |
0
|
public String getSource(ModuleAddress address) throws IOException {... |
| 65 |
0
|
return null; |
| 66 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 67 |
0
|
public ModuleAddress getModuleAddress(URL url) throws IOException {... |
| 68 |
0
|
return null; |
| 69 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 70 |
0
|
public ModuleAddress getModuleAddress(String url) throws IOException {... |
| 71 |
0
|
return null; |
| 72 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 73 |
0
|
public ModuleAddress getModuleAddress(File file) throws IOException {... |
| 74 |
0
|
return null; |
| 75 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 76 |
0
|
public boolean checkModule(ModuleAddress address) {... |
| 77 |
0
|
return false; |
| 78 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 79 |
0
|
public Object executePlugin(String pluginName, ModuleAddress address, Map parameters) {... |
| 80 |
0
|
return null; |
| 81 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 82 |
0
|
public QedeqFileDao getQedeqFileDao() {... |
| 83 |
0
|
return null; |
| 84 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 85 |
0
|
public KernelQedeqBo getKernelQedeqBo(ModuleAddress address) {... |
| 86 |
0
|
return null; |
| 87 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 88 |
0
|
public KernelQedeqBo loadModule(ModuleAddress parent, Specification spec) throws SourceFileExceptionList {... |
| 89 |
0
|
return null; |
| 90 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 91 |
0
|
public SourceFileExceptionList createSourceFileExceptionList(String address,... |
| 92 |
|
IOException e) { |
| 93 |
0
|
return null; |
| 94 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 95 |
0
|
public SourceFileExceptionList createSourceFileExceptionList(String address,... |
| 96 |
|
Exception e) { |
| 97 |
0
|
return null; |
| 98 |
|
} |
|
|
|
| 0% |
Uncovered Elements: 1 (1) |
Complexity: 1 |
Complexity Density: 1 |
|
| 99 |
0
|
public SourceFileExceptionList createSourceFileExceptionList(String address,... |
| 100 |
|
RuntimeException e) { |
| 101 |
0
|
return null; |
| 102 |
|
} |
| 103 |
|
|
| 104 |
|
} |