VBA-tools / vba-test

Add testing and TDD to VBA on Windows and Mac
MIT License
202 stars 46 forks source link

IsEqual does not support Array Types #16

Closed robodude666 closed 6 years ago

robodude666 commented 7 years ago

IsEqual should support Array Types so that users can compare if two arrays are identical (same size, index 0 matches index 0, etc.). Currently it falls through to the else clause:

IsEqual = Actual = Expected

and causes a VB runtime error.

timhall commented 7 years ago

@vitosh actually sent a PR for this far too long ago, I'll merge that shortly to fix this.

robodude666 commented 7 years ago

Ah, #12. I saw that some time ago but forgot about it.