From 103ae7f3b132f9352c6b1a7210ecdb5cbca1be14 Mon Sep 17 00:00:00 2001 From: Axel Huebl Date: Tue, 15 Aug 2023 14:35:28 -0700 Subject: [PATCH] Test `amr.Print(...)` --- tests/test_utility.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tests/test_utility.py b/tests/test_utility.py index 646b8e13..033ce976 100644 --- a/tests/test_utility.py +++ b/tests/test_utility.py @@ -6,3 +6,8 @@ def test_concatenate(): pltname = amr.concatenate("plt", 1000, 5) assert pltname == "plt01000" + + +def test_print(): + print("hello from everyone") + amr.Print("byeee from IO processor")