Activity for Kelly Ethridge

  • Kelly Ethridge Kelly Ethridge created a blog post

    Version 3.1 Released

  • Kelly Ethridge Kelly Ethridge posted a comment on discussion Open Discussion

    Hello, Sorry, I never pursued this ability. I'm sure it can be done since the framework exposes hooks throughout the testing process. However, it isnt' something I will be looking in to.

  • Kelly Ethridge Kelly Ethridge modified a blog post

    Version 3.0 Released

  • Kelly Ethridge Kelly Ethridge modified a blog post

    Version 3.0 Released

  • Kelly Ethridge Kelly Ethridge created a blog post

    Version 3.0 Released

  • Kelly Ethridge Kelly Ethridge posted a comment on discussion Help

    Hello, I suspect you don't have the error-trapping setting in your VB IDE set correctly. Here is the wiki page describing it

  • Kelly Ethridge Kelly Ethridge committed [r777]

    chore(BigInteger): code cleanup.

  • Kelly Ethridge Kelly Ethridge committed [r776]

    chore(Mathematics): code cleanup of Release methods.

  • Kelly Ethridge Kelly Ethridge committed [r775]

    chore(Mathematics): code cleanup.

  • Kelly Ethridge Kelly Ethridge committed [r774]

    refactor(Mathematics): remove dependency on LeftShift16 function.

  • Kelly Ethridge Kelly Ethridge committed [r773]

    refactor(Mathematics): remove dependency on GetInt function.

  • Kelly Ethridge Kelly Ethridge committed [r772]

    refactor(Mathematics): remove dependency on GetLong function.

  • Kelly Ethridge Kelly Ethridge committed [r771]

    chore(CorLib): move BigInteger and related files to System.Numerics folder.

  • Kelly Ethridge Kelly Ethridge committed [r770]

    feat(BigInteger): add IFormattable interface support.

  • Kelly Ethridge Kelly Ethridge committed [r769]

    fix(BigInteger): precision was not correct when high-bytes are set.

  • Kelly Ethridge Kelly Ethridge committed [r768]

    chore(test): delete unused tests.

  • Kelly Ethridge Kelly Ethridge committed [r767]

    test(BigInteger): convert tests.

  • Kelly Ethridge Kelly Ethridge committed [r766]

    fix(Directory): was not correctly validating search pattern.

  • Kelly Ethridge Kelly Ethridge committed [r765]

    refactor(Directory): code clean up.

  • Kelly Ethridge Kelly Ethridge committed [r764]

    chore(Encoding): remove unused methods.

  • Kelly Ethridge Kelly Ethridge committed [r763]

    chore(all): remove unused Encoding and Decoder and associated tests.

  • Kelly Ethridge Kelly Ethridge committed [r762]

    test(StreamReader): add tests to cover determining encoding.

  • Kelly Ethridge Kelly Ethridge committed [r761]

    chore(tests): delete unused test fixture.

  • Kelly Ethridge Kelly Ethridge committed [r760]

    refactor(all): change parameter order of ListRange factory methods.

  • Kelly Ethridge Kelly Ethridge committed [r759]

    refactor(all): remove unnecessary and redundant methods.

  • Kelly Ethridge Kelly Ethridge committed [r758]

    refactor(all): consolidated range parameter construction. removed unused methods.

  • Kelly Ethridge Kelly Ethridge committed [r757]

    refactor(Argument): remove unused methods.

  • Kelly Ethridge Kelly Ethridge committed [r756]

    refactor(all): remove dependency on GetOptionalListRange and remove method.

  • Kelly Ethridge Kelly Ethridge committed [r755]

    refactor(all): remove dependency on ValidateCharArray and remove method.

  • Kelly Ethridge Kelly Ethridge committed [r754]

    refactor(all): remove dependency on ValidateCharArrayOptionalRange and remove method.

  • Kelly Ethridge Kelly Ethridge committed [r753]

    refactor(all): remove dependency on ValidateCharArrayRange and remove method.

  • Kelly Ethridge Kelly Ethridge committed [r752]

    refactor(all): remove dependency on ValidateByteArrayOptionalRange and remove method.

  • Kelly Ethridge Kelly Ethridge committed [r751]

    refactor(all): remove dependency on ValidateByteArrayRange and remove method.

  • Kelly Ethridge Kelly Ethridge committed [r750]

    refactor(all): remove dependency on ValidateOptionalArrayRange and remove method.

  • Kelly Ethridge Kelly Ethridge committed [r749]

    refactor(all): remove dependency on ValidateByteArray and remove method.

  • Kelly Ethridge Kelly Ethridge committed [r748]

    fix(RSACryptoServiceProvider): SignHash was throwing parameter name "RbgHash" instead of "RgbHash".

  • Kelly Ethridge Kelly Ethridge committed [r747]

    fix(SortedListTests): change CopyTo_WithNullArray_ThrowsArgumentNullException test to use vbLong array instead of object array to reflect change in CorArray.IsNull behavior.

  • Kelly Ethridge Kelly Ethridge committed [r746]

    fix(Buffer): add array validation to methods.

  • Kelly Ethridge Kelly Ethridge committed [r745]

    fix(CorArray): update Length and Rank to validate array parameter manually.

  • Kelly Ethridge Kelly Ethridge committed [r744]

    refactor(RSACryptoServiceProvider): clean up code.

  • Kelly Ethridge Kelly Ethridge committed [r743]

    test(DSACryptoServiceProvider): add updated tests for provider and related classes.

  • Kelly Ethridge Kelly Ethridge committed [r742]

    fix(CorString): a null set of characters to check for in IndexOfAny method could cause a memory leak.

  • Kelly Ethridge Kelly Ethridge committed [r741]

    chore(Tests): update JulianCalendar tests.

  • Kelly Ethridge Kelly Ethridge committed [r740]

    feat(Calendar): add IsReadOnly, AlgorithmType, DaysInYearBeforeMinSupportedYear, and Clone methods.

  • Kelly Ethridge Kelly Ethridge committed [r739]

    feat(Encoding): implement ICloneable in encoding classes.

  • Kelly Ethridge Kelly Ethridge committed [r738]

    refactor(GregorianCalendar): clean up class and documentation.

  • Kelly Ethridge Kelly Ethridge committed [r737]

    tests(GregorianCalendar): add tests for calendar.

  • Kelly Ethridge Kelly Ethridge committed [r736]

    feat(Calendar): add MinSupportedDateTime and MaxSupportedDateTime to Calendar interface.

  • Kelly Ethridge Kelly Ethridge committed [r735]

    refactor(all): move FileFlagHelper module methods to associated classes. removed unused module.

  • Kelly Ethridge Kelly Ethridge committed [r734]

    refactor(all): remove dependency on CorArray.ArrayPointer.

  • Kelly Ethridge Kelly Ethridge committed [r733]

    chore(all): rename modules removing 'mod' prefix.

  • Kelly Ethridge Kelly Ethridge committed [r732]

    feat(Encoding): add DBCSCodePageEncoding for improved 2-byte encoding support.

  • Kelly Ethridge Kelly Ethridge committed [r731]

    chore(Encoding): implement single-byte encoding support.

  • Kelly Ethridge Kelly Ethridge posted a comment on discussion Open Discussion

    SimplyVBUnit is only a unit-testing framework. It provides the ability to run your defined tests and allows you to perform assertions on expected results within the tests. It doesn't facilitate any connections with services. If you want your tests to connect to services, SimplyVBUnit does not prevent that, but you'll have to connect to your services yourself.

  • Kelly Ethridge Kelly Ethridge posted a comment on discussion Help

    You were on the right track. Here is how to add test cases like you want. Private Sub ITestFixture_GetTestCases(ByVal Test As SimplyVBComp.TestFixtureBuilder) Test.Add("TestCase1").Use "arg" Test.Add("TestCase2").Use "arg" Test.Add("TestCase3").Use "arg" Test.Add("TestCase4").Use "arg" End Sub It's very similar to the ITestCaseSource implementation.

  • Kelly Ethridge Kelly Ethridge posted a comment on discussion Help

    Hi Zoran, SimplyVBUnit descovers tests within a class by querying the COM interface. When running in the IDE the IDE gives all classes a public interface within that context and so SimplyVBUnit can find the methods. Unfortunately, once an EXE is compiled all classes are turned private and even though you manually add an instance of the test classes in the form_load event, the methods are private, so SimplyVBUnit cannot descover them. There are no easy options if you're trying to keep everything in...

  • Kelly Ethridge Kelly Ethridge committed [r730]

    chore(all): change all constructor strings and variant parameters to ByRef.

  • Kelly Ethridge Kelly Ethridge committed [r729]

    doc(StringComparer): add documentation for StringComparer and StringComparerStatic classes.

  • Kelly Ethridge Kelly Ethridge committed [r728]

    chore(CharAllocation): improved char array mapping by adding a reserved fastlane allocation.

  • Kelly Ethridge Kelly Ethridge committed [r727]

    doc(all): added an alpha prerelease doc.

  • Kelly Ethridge Kelly Ethridge committed [r726]

    chore(doc): update README.TXT

  • Kelly Ethridge Kelly Ethridge committed [r725]

    feat(BinaryReader): add option to leave base stream open when closing reader and close reader on Class_Terminate.

  • Kelly Ethridge Kelly Ethridge committed [r724]

    test(BinaryReader): ensure ReadChar fails correctly when reading surrogate.

  • Kelly Ethridge Kelly Ethridge committed [r723]

    fix(BinaryReader): ReadChars and ReadBytes now return zero-length arrays when no data is available instead of throwing an exception.

  • Kelly Ethridge Kelly Ethridge committed [r722]

    fix(CultureInfo): bring tests in alignment with region.

  • Kelly Ethridge Kelly Ethridge committed [r721]

    fix(SymmetricAlgorithmBase): Mode and Padding properties not throwing correct exception.

  • Kelly Ethridge Kelly Ethridge committed [r720]

    fix(BinaryReader): was not correctly using Decoder causing subscript out of range error.

  • Kelly Ethridge Kelly Ethridge committed [r719]

    chore(all): removed CorArray.LengthFirstDim calls in favor of Len1D.

  • Kelly Ethridge Kelly Ethridge committed [r718]

    chore(all): remove unused duplicate code.

  • Kelly Ethridge Kelly Ethridge committed [r717]

    feat(UTF8Encoding): implement serialization.

  • Kelly Ethridge Kelly Ethridge committed [r716]

    chore(UTF8Encoding): extend GetCharCount to decode chars for GetChars.

  • Kelly Ethridge Kelly Ethridge committed [r715]

    chore(UTF8Encoding): clean up GetString method.

  • Kelly Ethridge Kelly Ethridge committed [r714]

    chore(UTF8Encoding): re-implement GetCharCount and update GetChar methods to correctly allocate resulting char array.

  • Kelly Ethridge Kelly Ethridge posted a comment on discussion Help

    Hello, When installing VB6 the location of the projects template folder is stored in the registery. This is where I pull it from at this registry key: HKCU\Software\Microsoft\Visual Basic\6.0 -> value:TemplatesDirectory. I'm thinking maybe there is a security issue with either accessing the registery entry or writing to the templates folder. I've done several installs on Windows 10 with UAC set to the default and have never had an issue. The other possibility might be that the template location is...

  • Kelly Ethridge Kelly Ethridge committed [r713]

    refactor(UTF8Encoding): move duplicate code to ...

  • Kelly Ethridge Kelly Ethridge committed [r712]

    chore(UTF8Encoding): add Encoder support to Get...

  • Kelly Ethridge Kelly Ethridge committed [r711]

    refactor(UTF8Encoder): remove dependency from U...

  • Kelly Ethridge Kelly Ethridge committed [r710]

    chore(UTF8Encoding): re-implement GetBytes by e...

  • Kelly Ethridge Kelly Ethridge committed [r709]

    chore(UTF8Encoding): re-implemented GetByteCoun...

  • Kelly Ethridge Kelly Ethridge committed [r708]

    fix(UTF7Encoding): reset decoder state when flu...

  • Kelly Ethridge Kelly Ethridge committed [r707]

    chore(TextReader): update license.

  • Kelly Ethridge Kelly Ethridge committed [r706]

    chore(Encoding): ensure correctness with valida...

  • Kelly Ethridge Kelly Ethridge committed [r705]

    fix(StringBuilder): replace error checking from...

  • Kelly Ethridge Kelly Ethridge committed [r704]

    chore(UTF7Decoder): finish implementation.

  • Kelly Ethridge Kelly Ethridge committed [r703]

    perf(Encodings): move fixed-size array declarat...

  • Kelly Ethridge Kelly Ethridge committed [r702]

    chore(UTF7Encoding): implement DecoderFallback ...

  • Kelly Ethridge Kelly Ethridge committed [r701]

    fix(UTF7Encoding): GetChars fails when the outp...

  • Kelly Ethridge Kelly Ethridge committed [r700]

    chore(UTF7Encoder): must include file when chec...

  • Kelly Ethridge Kelly Ethridge committed [r699]

    refactor(UTF7Encoding): replace inner while loo...

  • Kelly Ethridge Kelly Ethridge committed [r698]

    test(UTF7Encoding): add GetByteCount tests.

  • Kelly Ethridge Kelly Ethridge committed [r697]

    refactor(UTF7Encoding): update validation to co...

  • Kelly Ethridge Kelly Ethridge committed [r696]

    chore(all): remove CLong usage and method.

  • Kelly Ethridge Kelly Ethridge committed [r695]

    chore(Encodings): replace hardcoded values with...

  • Kelly Ethridge Kelly Ethridge committed [r694]

    chore(all): code clean up.

  • Kelly Ethridge Kelly Ethridge committed [r693]

    chore(DefaultEncoder): finish DefaultEncoder im...

  • Kelly Ethridge Kelly Ethridge committed [r692]

    chore(ASCIIEncoding): make ASCIIEncoding serial...

  • Kelly Ethridge Kelly Ethridge committed [r691]

    chore(ASCIIEncoding): add optimized GetBytes ve...

  • Kelly Ethridge Kelly Ethridge committed [r690]

    chore(ASCIIEncoding): re-implement basic GetByt...

  • Kelly Ethridge Kelly Ethridge committed [r689]

    refactor(Char): optimized surrogate checkers by...

  • Kelly Ethridge Kelly Ethridge committed [r688]

    chore(doc): more documentation

1 >