Documentation updated to 169dd32
diff --git a/hop-user-manual/modules/.asciidoctor/pages/index.adoc b/hop-user-manual/modules/.asciidoctor/pages/index.adoc
index dc887a6..1d31049 100644
--- a/hop-user-manual/modules/.asciidoctor/pages/index.adoc
+++ b/hop-user-manual/modules/.asciidoctor/pages/index.adoc
@@ -284,6 +284,7 @@
 include::{sourcepath}/plugins/actions/ftpput.adoc[leveloffset=+2]
 include::{sourcepath}/plugins/actions/sftpput.adoc[leveloffset=+2]
 include::{sourcepath}/plugins/actions/repeat.adoc[leveloffset=+2]
+include::{sourcepath}/plugins/actions/runpipelinetests.adoc[leveloffset=+2]
 include::{sourcepath}/plugins/actions/sql.adoc[leveloffset=+2]
 include::{sourcepath}/plugins/actions/sendnagiospassivecheck.adoc[leveloffset=+2]
 include::{sourcepath}/plugins/actions/syslog.adoc[leveloffset=+2]
diff --git a/hop-user-manual/modules/ROOT/nav.adoc b/hop-user-manual/modules/ROOT/nav.adoc
index b9c39d8..5b14d49 100644
--- a/hop-user-manual/modules/ROOT/nav.adoc
+++ b/hop-user-manual/modules/ROOT/nav.adoc
@@ -267,6 +267,7 @@
 *** xref:plugins/actions/ftpput.adoc[Put a file with FTP]
 *** xref:plugins/actions/sftpput.adoc[Put a file with SFTP]
 *** xref:plugins/actions/repeat.adoc[Repeat]
+*** xref:plugins/actions/runpipelinetests.adoc[Run Pipeline Tests]
 *** xref:plugins/actions/sql.adoc[SQL Script Executor]
 *** xref:plugins/actions/sendnagiospassivecheck.adoc[Send Nagios check]
 *** xref:plugins/actions/syslog.adoc[Send information using Syslog]
diff --git a/hop-user-manual/modules/ROOT/pages/plugins/actions/runpipelinetests.adoc b/hop-user-manual/modules/ROOT/pages/plugins/actions/runpipelinetests.adoc
new file mode 100644
index 0000000..55e42fd
--- /dev/null
+++ b/hop-user-manual/modules/ROOT/pages/plugins/actions/runpipelinetests.adoc
@@ -0,0 +1,35 @@
+////
+Licensed to the Apache Software Foundation (ASF) under one
+or more contributor license agreements.  See the NOTICE file
+distributed with this work for additional information
+regarding copyright ownership.  The ASF licenses this file
+to you under the Apache License, Version 2.0 (the
+"License"); you may not use this file except in compliance
+with the License.  You may obtain a copy of the License at
+  http://www.apache.org/licenses/LICENSE-2.0
+Unless required by applicable law or agreed to in writing,
+software distributed under the License is distributed on an
+"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+KIND, either express or implied.  See the License for the
+specific language governing permissions and limitations
+under the License.
+////
+:documentationPath: /plugins/actions/
+:language: en_US
+:page-alternativeEditUrl: https://github.com/apache/incubator-hop/edit/master/plugins/actions/runpipelinetests/src/main/doc/runpipelinetests.adoc
+= Run Pipeline Tests
+
+== Description
+
+This action runs a series of pipeline unit tests.  The action is successful if all tests run without error. Errors are logged.
+
+== Options
+
+[width="75%", options="header"]
+|===
+|Option|Description
+|Action Name|The name of the action.
+|Test names|The names of the unit tests to execute
+|===
+
+
diff --git a/hop-user-manual/modules/ROOT/pages/plugins/transforms/fieldsplitter.adoc b/hop-user-manual/modules/ROOT/pages/plugins/transforms/fieldsplitter.adoc
index 453e07b..ea665bb 100644
--- a/hop-user-manual/modules/ROOT/pages/plugins/transforms/fieldsplitter.adoc
+++ b/hop-user-manual/modules/ROOT/pages/plugins/transforms/fieldsplitter.adoc
@@ -31,6 +31,9 @@
 |Transform name|Name of the transform; this name has to be unique in a single pipeline
 |Field to split|The name of the field you want to split
 |Delimiter|Delimiter that determines the field. Special characters (e.g. CHAR ASCII HEX01) can be set with the format $[value], e.g. $[01] or $[6F,FF,00,1F].
+|Enclosure|You can specify an enclosure string which when placed around a value allows delimiters to be present in it.  For example with a comma (,) delimiter:  ```aaaa,"123,456",ccc``` can be resolved to 3 fields using enclosure ```"```.
+| Escape string|To include delimiter characters in values sometimes an escape string is used like backslash, double backslash and so on.
+For example with a comma (,) delimiter:  ```aaaa,123\\,456,ccc``` can be resolved to 3 fields using escape character ```\\```.
 |Fields table|This table is where you define the properties for each new field created by the split. For each new field, you must define the field name, data type, and other properties.
 |===