Clover Coverage Report
Coverage timestamp: Sat Sep 18 2010 04:09:52 UTC
../../../../../img/srcFileCovDistChart0.png 89% of files have more coverage
19   104   24   0.79
0   84   1.26   24
24     1  
1    
 
  DummyInternalKernalServices       Line # 31 19 24 0% 0.0
 
No Tests
 
1    /* This file is part of the project "Hilbert II" - http://www.qedeq.org
2    *
3    * Copyright 2000-2010, Michael Meyling <mime@qedeq.org>.
4    *
5    * "Hilbert II" is free software; you can redistribute
6    * it and/or modify it under the terms of the GNU General Public
7    * License as published by the Free Software Foundation; either
8    * version 2 of the License, or (at your option) any later version.
9    *
10    * This program is distributed in the hope that it will be useful,
11    * but WITHOUT ANY WARRANTY; without even the implied warranty of
12    * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13    * GNU General Public License for more details.
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   
 
31    public class DummyInternalKernalServices implements InternalKernelServices {
32   
 
33  0 toggle public File getBufferDirectory() {
34  0 return null;
35    }
 
36  0 toggle public File getGenerationDirectory() {
37  0 return null;
38    }
 
39  0 toggle public File getLocalFilePath(ModuleAddress address) {
40  0 return null;
41    }
 
42  0 toggle public void startupServices() {
43    }
 
44  0 toggle public void removeAllModules() {
45    }
 
46  0 toggle public void clearLocalBuffer() throws IOException {
47    }
 
48  0 toggle public QedeqBo loadModule(ModuleAddress address) {
49  0 return null;
50    }
 
51  0 toggle public void loadRequiredModules(ModuleAddress address) throws SourceFileExceptionList {
52    }
 
53  0 toggle public boolean loadAllModulesFromQedeq() {
54  0 return false;
55    }
 
56  0 toggle public void removeModule(ModuleAddress address) {
57    }
 
58  0 toggle public ModuleAddress[] getAllLoadedModules() {
59  0 return null;
60    }
 
61  0 toggle public QedeqBo getQedeqBo(ModuleAddress address) {
62  0 return null;
63    }
 
64  0 toggle public String getSource(ModuleAddress address) throws IOException {
65  0 return null;
66    }
 
67  0 toggle public ModuleAddress getModuleAddress(URL url) throws IOException {
68  0 return null;
69    }
 
70  0 toggle public ModuleAddress getModuleAddress(String url) throws IOException {
71  0 return null;
72    }
 
73  0 toggle public ModuleAddress getModuleAddress(File file) throws IOException {
74  0 return null;
75    }
 
76  0 toggle public boolean checkModule(ModuleAddress address) {
77  0 return false;
78    }
 
79  0 toggle public Object executePlugin(String pluginName, ModuleAddress address, Map parameters) {
80  0 return null;
81    }
 
82  0 toggle public QedeqFileDao getQedeqFileDao() {
83  0 return null;
84    }
 
85  0 toggle public KernelQedeqBo getKernelQedeqBo(ModuleAddress address) {
86  0 return null;
87    }
 
88  0 toggle public KernelQedeqBo loadModule(ModuleAddress parent, Specification spec) throws SourceFileExceptionList {
89  0 return null;
90    }
 
91  0 toggle public SourceFileExceptionList createSourceFileExceptionList(String address,
92    IOException e) {
93  0 return null;
94    }
 
95  0 toggle public SourceFileExceptionList createSourceFileExceptionList(String address,
96    Exception e) {
97  0 return null;
98    }
 
99  0 toggle public SourceFileExceptionList createSourceFileExceptionList(String address,
100    RuntimeException e) {
101  0 return null;
102    }
103   
104    }