diff --git a/code/src/app/src/test/java/HelloHuman.java b/code/src/app/src/test/java/HelloHuman.java new file mode 100644 index 0000000..7228283 --- /dev/null +++ b/code/src/app/src/test/java/HelloHuman.java @@ -0,0 +1,6 @@ +public class HelloHuman { + // Create a new say action. + Say say = SayBuilder.with(qiContext) // Create the builder with the context. + .withText("Hello human!") // Set the text to say. + .build(); // Build the say action. +}