summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/mdia/test/mdiatestworkitem.H
diff options
context:
space:
mode:
Diffstat (limited to 'src/usr/diag/mdia/test/mdiatestworkitem.H')
-rw-r--r--src/usr/diag/mdia/test/mdiatestworkitem.H102
1 files changed, 78 insertions, 24 deletions
diff --git a/src/usr/diag/mdia/test/mdiatestworkitem.H b/src/usr/diag/mdia/test/mdiatestworkitem.H
index 111cd23cc..91b4deed6 100644
--- a/src/usr/diag/mdia/test/mdiatestworkitem.H
+++ b/src/usr/diag/mdia/test/mdiatestworkitem.H
@@ -1,25 +1,25 @@
-// IBM_PROLOG_BEGIN_TAG
-// This is an automatically generated prolog.
-//
-// $Source: src/usr/diag/mdia/test/mdiatestworkitem.H $
-//
-// IBM CONFIDENTIAL
-//
-// COPYRIGHT International Business Machines Corp. 2012
-//
-// p1
-//
-// Object Code Only (OCO) source materials
-// Licensed Internal Code Source Materials
-// IBM HostBoot Licensed Internal Code
-//
-// The source code for this program is not published or other-
-// wise divested of its trade secrets, irrespective of what has
-// been deposited with the U.S. Copyright Office.
-//
-// Origin: 30
-//
-// IBM_PROLOG_END
+/* IBM_PROLOG_BEGIN_TAG */
+/* This is an automatically generated prolog. */
+/* */
+/* $Source: src/usr/diag/mdia/test/mdiatestworkitem.H $ */
+/* */
+/* IBM CONFIDENTIAL */
+/* */
+/* COPYRIGHT International Business Machines Corp. 2012,2013 */
+/* */
+/* p1 */
+/* */
+/* Object Code Only (OCO) source materials */
+/* Licensed Internal Code Source Materials */
+/* IBM HostBoot Licensed Internal Code */
+/* */
+/* The source code for this program is not published or otherwise */
+/* divested of its trade secrets, irrespective of what has been */
+/* deposited with the U.S. Copyright Office. */
+/* */
+/* Origin: 30 */
+/* */
+/* IBM_PROLOG_END_TAG */
#ifndef __TEST_MDIATESTWORKITEM_H
#define __TEST_MDIATESTWORKITEM_H
@@ -47,8 +47,8 @@ class MdiaWorkItemTest : public CxxTest::TestSuite
StateMachine s;
WorkFlowProperties * notUsed = 0;
- WorkItem wi1(s, notUsed, 2222),
- wi2(s, notUsed, 1111);
+ WorkItem wi1(s, notUsed, 2222, 0),
+ wi2(s, notUsed, 1111, 0);
if(wi2 < wi1)
{
@@ -60,6 +60,60 @@ class MdiaWorkItemTest : public CxxTest::TestSuite
TS_FAIL("wi1 !< wi2");
}
+ wi1.iv_priority = 1111;
+ wi2.iv_priority = 1111;
+ wi1.iv_chipUnit = 0;
+ wi2.iv_chipUnit = 0;
+
+ if(wi2 < wi1)
+ {
+ TS_FAIL("wi2 < wi1");
+ }
+
+ if(wi1 < wi2)
+ {
+ TS_FAIL("wi1 < wi2");
+ }
+
+ wi1.iv_chipUnit = 1;
+ wi2.iv_chipUnit = 1;
+
+ if(wi2 < wi1)
+ {
+ TS_FAIL("wi2 < wi1");
+ }
+
+ if(wi1 < wi2)
+ {
+ TS_FAIL("wi1 < wi2");
+ }
+
+ wi1.iv_chipUnit = 0;
+
+ if(wi2 < wi1)
+ {
+ TS_FAIL("wi2 < wi1");
+ }
+
+ if(!(wi1 < wi2))
+ {
+ TS_FAIL("wi1 !< wi2");
+ }
+
+ wi1.iv_chipUnit = 1;
+ wi2.iv_chipUnit = 0;
+
+ if(!(wi2 < wi1))
+ {
+ TS_FAIL("wi2 !< wi1");
+ }
+
+ if(wi1 < wi2)
+ {
+ TS_FAIL("wi1 < wi2");
+ }
+
+
TS_TRACE(EXIT_MRK "testWorkItem");
}
};
OpenPOWER on IntegriCloud