export_test.go raw

   1  package btcjson
   2  
   3  var (
   4  	// TstHighestUsageFlagBit makes the internal highestUsageFlagBit parameter available to the test package.
   5  	TstHighestUsageFlagBit = highestUsageFlagBit
   6  	// TstNumErrorCodes makes the internal numErrorCodes parameter available to the test package.
   7  	TstNumErrorCodes = numErrorCodes
   8  	// TstAssignField makes the internal assignField function available to the test package.
   9  	TstAssignField = assignField
  10  	// TstFieldUsage makes the internal fieldUsage function available to the test package.
  11  	TstFieldUsage = fieldUsage
  12  	// TstReflectTypeToJSONType makes the internal reflectTypeToJSONType function available to the test package.
  13  	TstReflectTypeToJSONType = reflectTypeToJSONType
  14  	// TstResultStructHelp makes the internal resultStructHelp function available to the test package.
  15  	TstResultStructHelp = resultStructHelp
  16  	// TstReflectTypeToJSONExample makes the internal reflectTypeToJSONExample function available to the test package.
  17  	TstReflectTypeToJSONExample = reflectTypeToJSONExample
  18  	// TstResultTypeHelp makes the internal resultTypeHelp function available to the test package.
  19  	TstResultTypeHelp = resultTypeHelp
  20  	// TstArgHelp makes the internal argHelp function available to the test package.
  21  	TstArgHelp = argHelp
  22  	// TestMethodHelp makes the internal methodHelp function available to the test package.
  23  	TestMethodHelp = methodHelp
  24  	// TstIsValidResultType makes the internal isValidResultType function available to the test package.
  25  	TstIsValidResultType = isValidResultType
  26  )
  27