Ok, so to use test driven development here, I will start writing tests to describe the behaviors of the control I want and then code to make the tests pass. I copied the code from the module from last time with the TestCustomTags Sub to a new Test module I created with RubberDuckVBA. here is the Test code, most of which is the boiler plate created when RubberDuck built the module:
Now of course, I want to change this test right away because although it passes with my existing code, testCT(ctl) is REALLY going to return a singular CustomTag object.
Here is the latest syntax I was imagining:
So now I can change my test to this:
So now this updated test currently causes a compile error of a type mismatch because the default member of TagControls is returning a string. So I updated the code to return a new CustomTag object like so:
So now the code compiles AND my test passes. So far this is accurate behavior for how I’d like the object to behave.
Next time I will setup a second test to set a value and return the same value. This will get us into working with some kind of internal collection or dictionary or something to store the various custom tags and their tag names and values.