Hullaballoonatic
10/02/2021, 9:55 PMScott Kruse
10/03/2021, 2:44 AMHullaballoonatic
10/03/2021, 8:49 PM[
{ text: 'hello', expected: 'HELLO' },
{ text: 'apple', expected: 'APPLE' }
].forEach(({ text, expected }) => {
it(`should return 'text' in uppercase`, () => {
expect(uppercase(text)).toBe(expected);
});
});
Matteo Mirk
10/04/2021, 2:35 PMkotlin.test
only provides annotations and assertion functions independent from the platform, plus some specific implementations