export_test.go raw

   1  /* This test file is part of the database package rather than than the database_test package so it can bridge access to the
   2  internals to properly test cases which are either not possible or can't reliably be tested via the public interface. The
   3  functions, constants, and variables are only exported while the tests are being run.
   4  */
   5  package database
   6  
   7  // TstNumErrorCodes makes the internal numErrorCodes parameter available to the test package.
   8  const TstNumErrorCodes = numErrorCodes
   9