/* goodB2G2() - use badsource and goodsink by reversing the blocks in the if in the sink function */
        private void GoodB2G2()
        {
            ulong data = 0ul;

            /* POTENTIAL FLAW: Use a random value */
            data = IO.GetRandomULong();
            goodB2G2PublicStatic = true;
            CWE191_Integer_Underflow__UInt64_rand_multiply_22b.GoodB2G2Sink(data);
        }
        /* goodG2B() - use goodsource and badsink */
        private void GoodG2B()
        {
            ulong data = 0ul;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            data = 2;
            goodG2BPublicStatic = true;
            CWE191_Integer_Underflow__UInt64_rand_multiply_22b.GoodG2BSink(data);
        }
        public override void Bad()
        {
            ulong data = 0ul;

            /* POTENTIAL FLAW: Use a random value */
            data            = IO.GetRandomULong();
            badPublicStatic = true;
            CWE191_Integer_Underflow__UInt64_rand_multiply_22b.BadSink(data);
        }