Fixed DecToHexConverter filename, added test and fixed other tests.

This commit is contained in:
Manuel Friedli 2018-08-31 23:40:47 +02:00
parent 83292b14c2
commit e8f5d12fda
5 changed files with 19 additions and 3 deletions

View File

@ -3,7 +3,7 @@ import {Base64Encoder} from './converter/base64-encoder';
import {BinToDecConverter} from './converter/bin-to-dec-converter';
import {Converter} from './converter/converter';
import {DecToBinConverter} from './converter/dec-to-bin-converter';
import {DecToHexConverter} from './converter/dectohexconverter';
import {DecToHexConverter} from './converter/dec-to-hex-converter';
import {HexToDecConverter} from './converter/hextodecconverter';
import {HTMLEntitiesDecoder} from './converter/htmlentitiesdecoder';
import {HTMLEntitiesEncoder} from './converter/htmlentitiesencoder';

View File

@ -4,7 +4,7 @@ describe('BinToDecConverter', () => {
it('should create an instance', () => {
expect(new BinToDecConverter()).toBeTruthy();
});
it('should have the id "base64encode"', () => {
it('should have the id "bintodec"', () => {
expect(new BinToDecConverter().getId()).toEqual('bintodec');
});
it('should convert "11011" to "27"', () => {

View File

@ -4,7 +4,7 @@ describe('DecToBinConverter', () => {
it('should create an instance', () => {
expect(new DecToBinConverter()).toBeTruthy();
});
it('should have the id "base64encode"', () => {
it('should have the id "dectobin"', () => {
expect(new DecToBinConverter().getId()).toEqual('dectobin');
});
it('should convert "22" to "10110"', () => {

View File

@ -0,0 +1,16 @@
import {DecToHexConverter} from './dec-to-hex-converter';
describe('DecToHexConverter', () => {
it('should create an instance', () => {
expect(new DecToHexConverter()).toBeTruthy();
});
it('should have the id "dectohex"', () => {
expect(new DecToHexConverter().getId()).toEqual('dectohex');
});
it('should convert "22" to "16"', () => {
expect(new DecToHexConverter().convert('22')).toEqual('16');
});
it('should raise an exception on invalid input', () => {
expect(() => new DecToHexConverter().convert('foo bar')).toThrowError('The input seems not to be a valid integer.');
});
});