Table of Contents
Introduction#
Knowledge engineering with KnowWE is supported by a continuous integration framework, that allows to embed automated tests on the knowledge. These tests are executed on regular bases (triggers can be configured) and in case of failure the users are alerted. An overview about the history and the testing results in provided on a dashboard. This allows for a safe development process. The use of the existing CI features is described hereCreate new tests#
KnowWE provides an extension point to add new CITests, called CITest. To create an extension of this kind the class AbstractTest which is an abstract implementation of the interface Test should be implemented.Test object class#
One method of the interface Test is getTestObjectClass(). It determines the class of the test object which the test is supposed to be executed on.
Class<T> getTestObjectClass();
For example, if a test should run on wiki articles, the method should be implemented like this:
public Class<Article> getTestObjectClass()
Description#
Please implement the method getDescription() in a meaningful way, return a concise description about what this test is about. It will be used to generated the documentation table of all available tests of the system, c.f. Doc CIDashboard.
String getDescription();
Execute#
The actual test processing is executed within the method execute(). The parameters are passed by a String array.
public static int execute(String[] args) throws IOException