vote up 6 vote down star
1

We know that Python provides a lot of productivity over any compiled languages. We have programming in C# & need to write the unit test cases in C# itself. If we see the amount of code we write for unit test is approximately ten times more than the original code.

Is it ideal choice to write unit test cases in IronPython instead of C#? Any body has done like that? I wrote few test cases, they seems to be good. But hairy pointy managers won't accept.

flag

its PHBoss.. your version just tipped the scales:) – Gishu Dec 4 '08 at 11:59
"Hairy pointy managers" is a great phrase! – wilberforce Dec 4 '08 at 13:33
Anyway we can take a look at those tests or demo tests in IronPython! – azamsharp Dec 4 '08 at 21:03

7 Answers

vote up 3 vote down check

Will's answer is good - you're introducing a new requirement for developers.

In addition, what's the tool support like? I haven't tried any of this myself, but I'd want to know:

  • How easy is it to debug into failing unit tests?
  • How easy is it to run unit tests from the IDE? (e.g. with ReSharper)
  • How easy is it to automate the unit tests from a continuous build server?

It could be that all of these are fine - but you should make check them, and document the results.

There are other options as well as IronPython, of course - Boo being a fairly obvious choice.

link|flag
vote up 2 vote down

There's an obvious disadvantage which is that everyone working on the code now needs to be proficient in two languages, not just one. I'm fairly hairy but not very pointy, but I do see why managers might be sceptical.

link|flag
I don't see how IronPython scores over C# for unit-testing... and how the productivity jump will scale for the OP's entire team.. but it's a team decision.. if everyone agrees and the benefits are evident.. go right ahead. – Gishu Dec 4 '08 at 12:03
Well, aren't most programmers already accustomed to using multiple languages on the job? (eg. C#, SQL, JavaScript, HTML, etc.) I would be more worried about a dev shop that employs developers who only know and use one language for everything. – Ray Vega Dec 4 '08 at 19:04
vote up 2 vote down

Python being a much less verbose language than C# might actually lower the barrier to writing unit tests since there is still a lot of developers that are resistant to doing automated unit testing in general. Introducing and having them use a language like IronPython that typically tends to take less time to write the equivalent code in C# might actually encourage more unit tests to be written which is always a good thing.

Plus, by using IronPython for your test code, you might end up with less lines of code (LOC) for your project overall meaning that your unit tests might be more likely to be maintained in the long run versus being ignored and/or discarded.

link|flag
vote up 0 vote down

Very interesting.

What would happen if you write all your code with IronPython (not just the unit tests)? Would you end up with approximately 10 times less code?

Maybe I should learn IronPython too.

link|flag
C# is compiled & fast but IronPython usually bit slow. – Krish Dec 5 '08 at 5:08
vote up 3 vote down

Actually testing is a great opportunity to try integrating a new language. Languages like Python shine especially well in testing, and it's a low risk project to try - the worst case is not too bad at all.

As far as experience testing another language in Python, I've tested C and C++ systems like this and it was excellent. I think it's definitely worth a shot.

What Jon says is true, though - the level of tooling for Python in general, and IronPython in particular, is nowhere near that of C#. How much that affects you is something you'll find out in your pilot.

link|flag
vote up 3 vote down

Python is excellent for UnitTesting C# code. Our app is 75% in Python and 25% C#(Python.Net), and our unit tests are 100% python.

I find that it's much easier to make use of stubs and mocks in Python which is probably one of the most critical components that enable one to write effective unittests.

link|flag
vote up 0 vote down

I gotta go with Will and Jon..

I would prefer my tests be in the same language as the code I'm testing; it causes fewer cognitive context switches. But maybe I'm just not as mentally agile as I once was.

  • Jon
link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.