.net « Development « Java Testing Q&A

Home
Java Testing Q&A
1.Development
2.FindBugs
3.HTMLUnit
4.hudson
5.junit
6.performance
7.plugin
8.profile
9.selenium
10.Tools
11.unit test
Java Testing Q&A » Development » .net 

1. How do I write (test) code that will not be optimized by the compiler/JIT?    stackoverflow.com

I don't really know much about the internals of compiler and JIT optimizations, but I usually try to use "common sense" to guess what could be optimized and what couldn't. So ...

2. Writing long test method names to describe tests vs using in code documentation    stackoverflow.com

For writing unit tests, I know it's very popular to write test methods that look like

public void Can_User_Authenticate_With_Bad_Password()
{
...
}
While this makes it easy to see what the test is testing for, ...

3. Multi language testing framework    stackoverflow.com

I need to write two versions of the same application, one in .NET and the other one in Java. So I'd like to write a single test suite, and then use ...

4. High-performance Math library for .NET /C# and Java    stackoverflow.com

We currently have a high-performance scientific application written in C++ that makes use of Intel Math Kernel Library. We are considering writing a benchmark application written in Java and .NET/C# ...

5. Fastest(performance-wise) way to share data(not objects) between .Net & Java    stackoverflow.com

I know of at least one post which has same words like this. But this is not exactly same as that post. I'm trying to work a way to "share" data ...

6. .NET developer has a few hours to cram for a Java proficiency test. What to do?    stackoverflow.com

I have an interview tomorrow morning and just found out that I will also be taking an hour-long Java proficiency test! I am a certified C# .NET developer but have barely touched ...

7. Open source projects using BDD testing?    stackoverflow.com

My team is interesting in understanding BDD better. Are there open source .NET/Java projects which use behavior driven development (BDD)? I would like to focus my attention on static language ...

8. handle security popup using vbscript (without QTP/Selenium)    stackoverflow.com

I am automating an application login using vbscript. I am using the code -

Dim objIE
Set objIE = Wscript.CreateObject("InternetExplorer.Application")
objIE.Visible = True
objIE.Navigate "https://portal url"
after this, there is a security pop up which asks ...

9. .Net Developer needs to create Java Client test station    forums.oracle.com

I have a web service written in .Net which is easily accessed by .Net client requests. However, our first Java request client is having difficulties connecting to it. Being that they are an off-shore company, there is a language barrier and a middle-man in the way of us finding out what the actual problem(s) is/are. Since our examples and the SOAP ...

java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.