Hi,
I had some spare time so I had a bit of a look into writing some kind of a test template that I could use to test MAExtension code without having to open FIM. The basic idea is to have an xml file with the inputs that would usually be provided by FIM and then expected outputs. Then feed the xml to the extension code methods and compare the state of the dummy connector space or metaverse to some more xml after the extension code has been applied. Automated testing.
I didn't get very far though because the constructor for MVEntry has no parameters and is protected. This means that I can't create a mock (or fake or dummied) version of a metaverse entry. Without being able to make fake versions of everything I don't know how to do automated testing.
Has anyone tried something similar?