// Copyright (c) Dolittle. All rights reserved. // Licensed under the MIT license. See LICENSE file in the project root for full license information. import { describeThis } from '@dolittle/typescript.testing'; import { Guid } from '../../Guid'; class MyType extends Guid {} describeThis(__filename, () => { const guidAsString = '0be23d5b-90d6-45f4-94fb-f1537caeea73'; const result = Guid.as(guidAsString); it('should return a guid with the expected identifier', () => result.toString().should.equal(guidAsString)); });