/* goodG2B() - use goodsource and badsink */
 private static void GoodG2B()
 {
     /* FIX: Use a hardcoded number that won't cause underflow, overflow, divide by zero, or loss-of-precision issues */
     data = 2;
     CWE197_Numeric_Truncation_Error__short_random_68b.GoodG2BSink();
 }
 public override void Bad()
 {
     /* FLAW: Set data to a random value */
     data = (short)((new Random()).Next(short.MaxValue + 1));
     CWE197_Numeric_Truncation_Error__short_random_68b.BadSink();
 }