/* goodG2B() - use goodsource and badsink */
        public static void GoodG2BSink(CWE191_Integer_Underflow__UInt32_min_sub_67a.Container dataContainer)
        {
            uint data = dataContainer.containerOne;
            /* POTENTIAL FLAW: if data == uint.MinValue, this will overflow */
            uint result = (uint)(data - 1);

            IO.WriteLine("result: " + result);
        }
        /* goodB2G() - use badsource and goodsink */
        public static void GoodB2GSink(CWE191_Integer_Underflow__UInt32_min_sub_67a.Container dataContainer)
        {
            uint data = dataContainer.containerOne;

            /* FIX: Add a check to prevent an overflow from occurring */
            if (data > uint.MinValue)
            {
                uint result = (uint)(data - 1);
                IO.WriteLine("result: " + result);
            }
            else
            {
                IO.WriteLine("data value is too small to perform subtraction.");
            }
        }