From dc9f5af4e0dc98ecef261c2e031f0028905fcf7f Mon Sep 17 00:00:00 2001 From: "Thomas N. Kramer" Date: Mon, 4 Sep 2023 09:39:26 +0200 Subject: [PATCH] file removed from project and added to gitignore The file is generated during a test run, and it contains information about the user Signed-off-by: Thomas N. Kramer --- .gitignore | 2 +- testsuites/concatenatedTestsuites | 25 ------------------------- 2 files changed, 1 insertion(+), 26 deletions(-) delete mode 100644 testsuites/concatenatedTestsuites diff --git a/.gitignore b/.gitignore index 8676cb8a..d5246a2b 100644 --- a/.gitignore +++ b/.gitignore @@ -14,7 +14,7 @@ LAUNCHTESTT CC##* # project specific - +testsuites/concatenatedTestsuites *.hprof envvars target/ diff --git a/testsuites/concatenatedTestsuites b/testsuites/concatenatedTestsuites deleted file mode 100644 index 5e24907e..00000000 --- a/testsuites/concatenatedTestsuites +++ /dev/null @@ -1,25 +0,0 @@ - *From file: C:\Users\bdutnp\github\cobol-check\src\test\cobol\GREETING\GreetingByType.cut - TESTSUITE - "Greeting returns the appropriate message based on message type" - - TestCase "When message type is greeting it returns 'Hello, World!'" - SET MESSAGE-IS-GREETING TO TRUE - PERFORM 2000-SPEAK - EXPECT WS-GREETING TO BE "Hello, World!" - - TESTCASE "try numerical compare" - ADD 1 TO WS-COUNT - EXPECT WS-COUNT TO BE 1 - - TESTCASE "try 88 level compare" - EXPECT MESSAGE-IS-GREETING TO BE FALSE - - TESTCASE "When message type is farewell it returns See you later, alligator!" - SET MESSAGE-IS-FAREWELL TO TRUE - PERFORM 2000-SPEAK - Expect WS-FAREWELL To Be "See you later, alligator!" - - TESTCASE "Message type greeting is not true" - SET MESSAGE-IS-GREETING TO TRUE - Expect MESSAGE-IS-GREETING NOT TO BE TRUE -