/* goodG2B() - use goodsource and badsink */
        private static void GoodG2B()
        {
            double data;

            /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
            data = 2;
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE197_Numeric_Truncation_Error__double_large_to_float_67b.GoodG2BSink(dataContainer);
        }
        public override void Bad()
        {
            double data;

            /* FLAW: Use a number larger than long.MaxValue */
            data = float.MaxValue + 5;
            Container dataContainer = new Container();

            dataContainer.containerOne = data;
            CWE197_Numeric_Truncation_Error__double_large_to_float_67b.BadSink(dataContainer);
        }