aboutsummaryrefslogtreecommitdiffstats
path: root/test/utils.extractTypeName.js
blob: 2b4bbe76768371a3fa7a69331189774eb6eaa985 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
var assert = require('assert');
var utils = require('../lib/utils.js');

describe('utils', function () {
    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');
        });

    });
});