1/** 2 * @fileoverview Export symbols needed by tests in CommonJS style. 3 * 4 * This file is like export.js, but for symbols that are only used by tests. 5 * However we exclude assert functions here, because they are exported into 6 * the global namespace, so those are handled as a special case in 7 * export_asserts.js. 8 */ 9 10// Include a dummy provide statement so that closurebuilder.py does not skip over this 11// file. 12goog.provide('jspb.ExportTestDeps'); 13 14goog.require('goog.crypt.base64'); 15goog.require('goog.testing.PropertyReplacer'); 16goog.require('jspb.arith.Int64'); 17goog.require('jspb.arith.UInt64'); 18goog.require('jspb.BinaryEncoder'); 19goog.require('jspb.BinaryDecoder'); 20goog.require('jspb.BinaryWriter'); 21goog.require('jspb.utils'); 22 23exports.goog = goog; 24exports.jspb = jspb; 25