Assert that each converter has a display name.
This commit is contained in:
parent
a0590cc0db
commit
77c4d5831d
19 changed files with 76 additions and 0 deletions
|
@ -9,6 +9,10 @@ describe('Base64Decoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "base64decode"', () => {
|
||||
expect(sut.getId()).toEqual('base64decode');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('Base64Encoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "base64encode"', () => {
|
||||
expect(sut.getId()).toEqual('base64encode');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('BinToDecConverter', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "bintodec"', () => {
|
||||
expect(sut.getId()).toEqual('bintodec');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('DecToBinConverter', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "dectobin"', () => {
|
||||
expect(sut.getId()).toEqual('dectobin');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('DecToHexConverter', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "dectohex"', () => {
|
||||
expect(sut.getId()).toEqual('dectohex');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('HexToDecConverter', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "hextodec"', () => {
|
||||
expect(sut.getId()).toEqual('hextodec');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('HTMLEntitiesDecoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "decodehtmlentities"', () => {
|
||||
expect(sut.getId()).toEqual('decodehtmlentities');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('HTMLEntitiesEncoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "encodehtmlentities"', () => {
|
||||
expect(sut.getId()).toEqual('encodehtmlentities');
|
||||
});
|
||||
|
|
|
@ -18,6 +18,10 @@ describe('PunycodeDecoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "decodepunycode"', () => {
|
||||
expect(sut.getId()).toEqual('decodepunycode');
|
||||
});
|
||||
|
|
|
@ -18,6 +18,10 @@ describe('PunycodeEncoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "encodepunycode"', () => {
|
||||
expect(sut.getId()).toEqual('encodepunycode');
|
||||
});
|
||||
|
|
|
@ -18,6 +18,10 @@ describe('QuotedPrintableDecoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "decodequotedprintable"', () => {
|
||||
expect(sut.getId()).toEqual('decodequotedprintable');
|
||||
});
|
||||
|
|
|
@ -18,6 +18,10 @@ describe('QuotedPrintableEncoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "encodequotedprintable"', () => {
|
||||
expect(sut.getId()).toEqual('encodequotedprintable');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('ROT13Converter', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "rot13"', () => {
|
||||
expect(sut.getId()).toEqual('rot13');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('URIComponentDecoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "uricomponentdecode"', () => {
|
||||
expect(sut.getId()).toEqual('uricomponentdecode');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('URIComponentEncoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "uricomponentencode"', () => {
|
||||
expect(sut.getId()).toEqual('uricomponentencode');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('URIDecoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "uridecode"', () => {
|
||||
expect(sut.getId()).toEqual('uridecode');
|
||||
});
|
||||
|
|
|
@ -9,6 +9,10 @@ describe('URIEncoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "uriencode"', () => {
|
||||
expect(sut.getId()).toEqual('uriencode');
|
||||
});
|
||||
|
|
|
@ -18,6 +18,10 @@ describe('UTF8Decoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "decodeutf8"', () => {
|
||||
expect(sut.getId()).toEqual('decodeutf8');
|
||||
});
|
||||
|
|
|
@ -18,6 +18,10 @@ describe('UTF8Encoder', () => {
|
|||
expect(sut).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have a display name', () => {
|
||||
expect(sut.getDisplayname()).toBeTruthy();
|
||||
});
|
||||
|
||||
it('should have the id "encodeutf8"', () => {
|
||||
expect(sut.getId()).toEqual('encodeutf8');
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue