preload

On hard-coding of test data (2)

Posted by Albert Gareev on Jan 22, 2007
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 [...] ...
Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported
This work by Albert Gareev is licensed under a Creative Commons Attribution-NonCommercial-NoDerivs 3.0 Unported.