public void ShortGuidOperator_ShouldImplicitlyConvertsStringToShortGuid() { ShortGuid shortGuid = "eRy4yaDYjkuYob4YnHKtnA"; shortGuid.Should().NotBeNull().And.NotBeSameAs(ShortGuid.Empty); }
public void GuidOperator_ShouldImplicitlyConvertsShortGuidToGuid() { Guid guid = new ShortGuid("eRy4yaDYjkuYob4YnHKtnA"); guid.Should().NotBeEmpty(); }
public void ShortGuidOperator_ShouldImplicitlyConvertsGuidToShortGuid() { ShortGuid shortGuid = Guid.NewGuid(); shortGuid.Should().NotBeNull().And.NotBeSameAs(ShortGuid.Empty); }