2015-02-03 19:12:56 +00:00
|
|
|
var assert = require('assert');
|
2015-03-08 17:18:52 +00:00
|
|
|
var utils = require('../lib/utils/utils.js');
|
2015-02-03 19:12:56 +00:00
|
|
|
|
2015-03-25 21:17:35 +00:00
|
|
|
describe('lib/utils/utils', function () {
|
2015-02-03 19:12:56 +00:00
|
|
|
describe('extractTypeName', function () {
|
|
|
|
it('should extract type name from method with no params', function () {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var test = 'helloworld()';
|
|
|
|
|
|
|
|
// when
|
|
|
|
var typeName = utils.extractTypeName(test);
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert.equal(typeName, '');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract type name from method with one param', function () {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var test = 'helloworld1(int)';
|
|
|
|
|
|
|
|
// when
|
|
|
|
var typeName = utils.extractTypeName(test);
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert.equal(typeName, 'int');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract type name from method with two params', function () {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var test = 'helloworld2(int,string)';
|
|
|
|
|
|
|
|
// when
|
|
|
|
var typeName = utils.extractTypeName(test);
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert.equal(typeName, 'int,string');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('should extract type name from method with spaces between params', function () {
|
|
|
|
|
|
|
|
// given
|
|
|
|
var test = 'helloworld3(int, string)';
|
|
|
|
|
|
|
|
// when
|
|
|
|
var typeName = utils.extractTypeName(test);
|
|
|
|
|
|
|
|
// then
|
|
|
|
assert.equal(typeName, 'int,string');
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
});
|