blob: 0c03505741212c48218c9201a67acdeafd30e031 [file] [log] [blame]
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
var PluginLicenseTestRunner = /** @class */ (function () {
function PluginLicenseTestRunner(licenseTest) {
this.licenseTest = licenseTest;
}
PluginLicenseTestRunner.prototype.test = function (licenseId) {
return this.licenseTest(licenseId);
};
return PluginLicenseTestRunner;
}());
exports.PluginLicenseTestRunner = PluginLicenseTestRunner;