Repository: brooklyn-docs Updated Branches: refs/heads/master 1679a909c -> 35153dd11
Add notEqual assertion to test entities Project: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/repo Commit: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/commit/aacec65b Tree: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/tree/aacec65b Diff: http://git-wip-us.apache.org/repos/asf/brooklyn-docs/diff/aacec65b Branch: refs/heads/master Commit: aacec65b12aa73d1bdf70a00229b2f77533189f2 Parents: eb98ffd Author: Svetoslav Neykov <[email protected]> Authored: Thu Jul 21 18:11:01 2016 +0300 Committer: Svetoslav Neykov <[email protected]> Committed: Thu Jul 21 18:12:45 2016 +0300 ---------------------------------------------------------------------- guide/yaml/test/test-entities.md | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/brooklyn-docs/blob/aacec65b/guide/yaml/test/test-entities.md ---------------------------------------------------------------------- diff --git a/guide/yaml/test/test-entities.md b/guide/yaml/test/test-entities.md index a81a3d6..cb435b8 100644 --- a/guide/yaml/test/test-entities.md +++ b/guide/yaml/test/test-entities.md @@ -132,6 +132,7 @@ The following conditions are provided by those test entities above that include - `isEqualTo` - asserts that the actual value equals an expected value. - `equalTo` - a synonym for `isEqualTo` - `equals` - a synonym for `isEqualTo` +- `notEqual` - asserts that the actual value does not equal the expected value. - `matches` - asserts that the actual value matches a [regex pattern](http://docs.oracle.com/javase/7/docs/api/java/util/regex/Pattern.html?is-external=true), for example `".*hello.*"`. - `contains` - asserts that the actual value contains the supplied value - `isEmpty` - asserts that the actual value is an empty string
