0
…On hard-coding of test data, continued Parameterization is a structured programming approach Starting with example. Public Function SumAB() SumAB = 2 + 3 End Function Such a function is useless when you need to sum numbers different than 2 and 3. Now let’s apply mapping. Const A = 2 Const B = 3 ... Public [...] ...

