You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
49 lines
1.7 KiB
49 lines
1.7 KiB
9 years ago
|
// Copyright (c) 2014 The btcsuite developers
|
||
|
// Use of this source code is governed by an ISC
|
||
|
// license that can be found in the LICENSE file.
|
||
|
|
||
|
package btcjson
|
||
|
|
||
|
// TstHighestUsageFlagBit makes the internal highestUsageFlagBit parameter
|
||
|
// available to the test package.
|
||
|
var TstHighestUsageFlagBit = highestUsageFlagBit
|
||
|
|
||
|
// TstNumErrorCodes makes the internal numErrorCodes parameter available to the
|
||
|
// test package.
|
||
|
var TstNumErrorCodes = numErrorCodes
|
||
|
|
||
|
// TstAssignField makes the internal assignField function available to the test
|
||
|
// package.
|
||
|
var TstAssignField = assignField
|
||
|
|
||
|
// TstFieldUsage makes the internal fieldUsage function available to the test
|
||
|
// package.
|
||
|
var TstFieldUsage = fieldUsage
|
||
|
|
||
|
// TstReflectTypeToJSONType makes the internal reflectTypeToJSONType function
|
||
|
// available to the test package.
|
||
|
var TstReflectTypeToJSONType = reflectTypeToJSONType
|
||
|
|
||
|
// TstResultStructHelp makes the internal resultStructHelp function available to
|
||
|
// the test package.
|
||
|
var TstResultStructHelp = resultStructHelp
|
||
|
|
||
|
// TstReflectTypeToJSONExample makes the internal reflectTypeToJSONExample
|
||
|
// function available to the test package.
|
||
|
var TstReflectTypeToJSONExample = reflectTypeToJSONExample
|
||
|
|
||
|
// TstResultTypeHelp makes the internal resultTypeHelp function available to the
|
||
|
// test package.
|
||
|
var TstResultTypeHelp = resultTypeHelp
|
||
|
|
||
|
// TstArgHelp makes the internal argHelp function available to the test package.
|
||
|
var TstArgHelp = argHelp
|
||
|
|
||
|
// TestMethodHelp makes the internal methodHelp function available to the test
|
||
|
// package.
|
||
|
var TestMethodHelp = methodHelp
|
||
|
|
||
|
// TstIsValidResultType makes the internal isValidResultType function available
|
||
|
// to the test package.
|
||
|
var TstIsValidResultType = isValidResultType
|