it( "object method test to return true", function () {
     let x = {
         "s": "123"
     };
     expect( tc.isObject( x ) ).toBeDefined();
 } );
 it( "object method test to return false", function () {
     let x = 123;
     expect( tc.isObject( x ) ).toBe( false );
 } );