24 lines
481 B
JavaScript
24 lines
481 B
JavaScript
/*
|
|
* Test driver
|
|
* cylonjs.com
|
|
*
|
|
* Copyright (c) 2013-2015 The Hybrid Group
|
|
* Licensed under the Apache 2.0 license.
|
|
*/
|
|
|
|
"use strict";
|
|
|
|
var Driver = require("../driver"),
|
|
Utils = require("../utils");
|
|
|
|
var TestDriver;
|
|
|
|
module.exports = TestDriver = function TestDriver() {
|
|
TestDriver.__super__.constructor.apply(this, arguments);
|
|
};
|
|
|
|
Utils.subclass(TestDriver, Driver);
|
|
|
|
TestDriver.drivers = ["test"];
|
|
TestDriver.driver = function(opts) { return new TestDriver(opts); };
|