Which syntax correctly defines a basic test case in Angular using Jasmine?
Atest('should do something', () => { expect(true).toBe(true); });
Bdescribe('test', function() { it('does something', function() { expect(true).toBe(true); }); });
Cfunction test() { expect(true).toBe(true); }
DrunTest('should do something', () => { expect(true).toBe(true); });