Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1,320 changes: 1,320 additions & 0 deletions docs/15-testing/agent-editor-test-cases.md

Large diffs are not rendered by default.

576 changes: 576 additions & 0 deletions docs/15-testing/business-event-test-cases.md

Large diffs are not rendered by default.

584 changes: 584 additions & 0 deletions docs/15-testing/catalog-test-cases.md

Large diffs are not rendered by default.

755 changes: 755 additions & 0 deletions docs/15-testing/cli-commands-test-cases.md

Large diffs are not rendered by default.

1,401 changes: 1,401 additions & 0 deletions docs/15-testing/entity-test-cases.md

Large diffs are not rendered by default.

525 changes: 525 additions & 0 deletions docs/15-testing/enumeration-test-cases.md

Large diffs are not rendered by default.

468 changes: 468 additions & 0 deletions docs/15-testing/image-collection-test-cases.md

Large diffs are not rendered by default.

2,019 changes: 2,019 additions & 0 deletions docs/15-testing/integration-test-cases.md

Large diffs are not rendered by default.

509 changes: 509 additions & 0 deletions docs/15-testing/mapping-test-cases.md

Large diffs are not rendered by default.

1,155 changes: 1,155 additions & 0 deletions docs/15-testing/microflow-test-cases.md

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions docs/15-testing/nanoflow-test-cases.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Nanoflow Test Cases — Manual Testing

**Updated:** 2026-04-28
**PR:** [mendixlabs/mxcli#301](https://github.com/mendixlabs/mxcli/pull/301)
**PR:** [mendixlabs/mxcli#386](https://github.com/mendixlabs/mxcli/pull/386)

## Test Projects

Expand Down Expand Up @@ -339,23 +339,23 @@ create nanoflow MyModule.BadRef () begin
call nanoflow NonExistent.Flow ();
end;
```
**Expected:** Error — target nanoflow not found.
**Expected:** Nanoflow created (call target references not validated at CREATE time). This is a known design gap.

### 4.6 Non-existent page target
```
create nanoflow MyModule.BadPage () begin
show page NonExistent.Page ();
end;
```
**Expected:** Error — target page not found.
**Expected:** Nanoflow created (call target references not validated at CREATE time). This is a known design gap.

### 4.7 Non-existent microflow target
```
create nanoflow MyModule.BadMF () begin
call microflow NonExistent.Flow ();
end;
```
**Expected:** Error — target microflow not found.
**Expected:** Nanoflow created (call target references not validated at CREATE time). This is a known design gap.

---

Expand Down Expand Up @@ -544,7 +544,7 @@ rename nanoflow MyModule.OldName to NewName;
Rename nanoflow called by another flow. Verify caller's reference updated.

### 9.3 Rename to existing name
**Expected:** Error — name collision.
**Expected:** ~~Error — name collision.~~ Rename collision detection is not implemented. The rename succeeds, resulting in duplicate names. **Known gap.**

---

Expand Down
Loading
Loading