blob: 96d3f3470b38ceba73561867ba4bc9d20baa53ef [file] [log] [blame]
Josh Haberman15239362016-03-31 14:18:34 -07001/**
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
Adam Cozzette671e0752017-02-23 11:32:16 -080010// Include a dummy provide statement so that closurebuilder.py does not skip over this
11// file.
12goog.provide('jspb.ExportTestDeps');
13
Josh Haberman15239362016-03-31 14:18:34 -070014goog.require('goog.crypt.base64');
Adam Cozzettee372df52017-12-04 15:08:10 -080015goog.require('goog.testing.PropertyReplacer');
Josh Haberman15239362016-03-31 14:18:34 -070016goog.require('jspb.arith.Int64');
17goog.require('jspb.arith.UInt64');
18goog.require('jspb.BinaryEncoder');
19goog.require('jspb.BinaryDecoder');
Adam Cozzette40f35862016-11-18 12:32:52 -080020goog.require('jspb.BinaryWriter');
Josh Haberman15239362016-03-31 14:18:34 -070021goog.require('jspb.utils');
22
23exports.goog = goog;
24exports.jspb = jspb;