On GameSpot: Wii Fit tells 10-year-old she's fat
7 Resources for

junit

  • Subscribe to this listing via:
  • RSS
  • Email

TechRepublic Resources

JUnit Reloaded
JUnit is the most widely used (unit-) testing tool in the Java world. There are other powerful test frameworks out there, such as TestNG which is very comprehensive, but they've never enjoyed the broad acceptance JUnit has. With version 4, Kent Beck and Erich Gamma introduced the first significant API...
Tags: Sun Microsystems Inc., Tool, JUnit, Productivity
White papers 2006-12-07
Are Open Source Software Tools Better than Commercial?
I have seen on http://www.methodsandtools.com/dynpoll/oldpoll.php?OSQual2 the results of a poll on the quality of open source software development tools. I would rather agree with the majority that these tools offer at least a comparable quality experience compared to commercial products. What is your opinion?There's no easy answer.For the first it's...
Tags: eclipse, jboss, junit, martinig, mysql, open source, open-source software, php, programming, tool
Discussion threads 2006-10-03
Test-driven development lets you eliminate bugs as you code
In software development, bugs are a fact of life. However, test-driven development can reduce software bugs to a minimal annoyance. See how to set up a system for your next project.Project post mortems often focus on how many bugs were discovered and how they were managed. Take any process evaluation...
Tags: Programming languages, Microsoft Office, FormatDate, Harshad Oak, TDD, JUnit, developer, Java
Technical articles 2003-09-30
Test entire Web applications with HttpUnit
For successful application development and deployment, testing is imperative. Thankfully, tools such as JUnit can make the job easier. See how another handy tool, HttpUnit, extends JUnit's functionality to test over HTTP.HttpUnit is a suite of Java classes to test Web applications over HTTP. Coupled with JUnit, HttpUnit is a...
Tags: XML, Java, Jamie Scheinblum, HttpUnit, JUnit, Web application
Technical articles 2002-04-24
Effectively manage and integrate JUnit tests
Ask developers about testing, and they'll usually cringe. But JUnit, a simple framework for writing and running automated tests, can help you write code faster while increasing its quality. Here's a look at JUnit in action.In a recent article, I covered the creation of JUnit tests to perform unit testing...
Tags: Jamie Scheinblum, JUnit, test suite
Technical articles 2002-03-21
Creating JUnit test cases
Automated testing tools like JUnit make it easier to perform regular, reliable unit testing. See how you can create test cases and test suites for JUnit so that you can keep coding errors to a minimum.JUnit is a Java framework for performing unit tests on code. By testing code after...
Tags: Jamie Scheinblum, JUnit, test case
Technical articles 2002-03-14
Unit testing options for JavaScript
Unit testing is different from traditional testing because it is performed by the developer and not a tester. Tony Patton provides an overview of several options for unit testing client-side JavaScript code. by Tony Patton
Tags: JavaScript, Unit, Web Browser, JsUnit JUnit, JUnit, Tests, RhinoUnit RhinoUnit, Dustin Machi, Scripting Languages, Software/Web Development, Web Development, Tony Patton
Blog posts 2008-08-12

Additional Resources

In-Container Testing With JUnit
Today, unit testing is a very popular technique for ensuring code quality. Thanks to the JUnit framework, it has become quite easy to write unit tests for simple Java applications. However, where real-world enterprise applications are concerned, the typical JUnit testXXX method will not be as helpful because those applications...
Tags: Technique, Oracle Corp., Enterprise Application, J2Ee, Productivity, Enterprise Software, Application Servers, Java, Middleware, Software Development, Software/Web Development, Software, Programming Languages
White papers
Unit Test Frameworks: The xUnit Family of Unit Test Frameworks
Kent Beck published a unit test framework for the Smalltalk language in 1999. The architecture of SmalltalkUnit or SUnit represents a sweet spot, an ideal balance between simplicity and utility. Later, Erich Gamma ported SUnit to Java, creating JUnit. JUnit in turn begat CppUnit, NUnit, PyUnit, XMLUnit, and ports to...
Tags: Unit Test
Book chapters 2004-10-27
Drawkcab Gnimmargorp: Test-Driven Development With FUTS
One of the practices of Extreme Programming is Test-Driven Development TDD, also known as Test-First Design. This style of development emphasizes an approach that is backwards to many programmers: writing tests before working code. Interestingly, this approach has found application in both agile methodologies and validation-intensive programming environments. TDD involves...
Tags: SAS Institute, TDD
White papers 2006-02-28
Which C unit test tool (library) are you using
For the Java code that we write we use JUnit (and associated associated extensions like DbUnit, etc.). This is working really well for us.We would like to use a standard tool preferably open source for the C++ code that we write. Which one are you
Tags: test, programming, tool, jean-simon.s.larochelle@..., C, unit test
Discussion threads 2006-11-09
AppPerfect DevTest4J (exe)
AppPerfect DevTest4J is a comprehensive suite of products consisting of Java code analyzerCA, unit testerUT and profilerJP. CA is designed to perform a)Review Java code, b) Enforce Good Coding Practices. It analyzes Java/jsp code by applying over 750 built-in rules. It also provides functionality to automatically fix the coding violations....
Tags: Unit Test, AppPerfect DevTest4J, Unit Tester, Programming Languages, Java, Software Development, Software/Web Development
Software downloads 2007-06-22
Jtest
Jtest is an Automated Error Prevention product that automates Java unit testing and coding standard compliance to help developers produce reliable code in record time. Jtest analyzes classes, then generates and executes JUnit-format test cases designed to achieve maximum coverage, expose uncaught runtime exceptions, and verify requirements that were expressed...
Tags: Parasoft Corp., Jtest, Sun Solaris, Linux, Microsoft Windows, Operating Systems, UNIX, Programming Languages, Java, Servers, Software, Software Development, Software/Web Development, Hardware
Software downloads
Efficient Regression Tests for Database Applications
Testing is just as important for database applications as for any other application. The sad truth is that JUnit simply does not work for database applications, and there are no alternatives on the market place. The reason is that there are some fundamental issues in automatizing regression tests for database...
Tags: Truth, Database Application, Storage, Databases, Hardware, Enterprise Software, Software, Data Management
White papers 2004-11-19
IntelliJ Idea (exe)
IntelliJ Idea is an intelligent Java IDE intensely focused on developer productivity. It provides a robust combination of enhanced development tools, including re-factoring, J2EE support, ant, JUnit, and version controls integration. Packaged with an intelligent Java editor, coding assistance, and advanced code automation tools, IntelliJ Idea enables Java programmers to...
Tags: JetBrains IntelliJ Idea, Java Development Tools, Development Tools, Software Development, Software/Web Development
Software downloads 2006-06-07
Testing 1, 2, 3...
These days, developers are making an enormous contribution to software quality early in the development process, using automated unit-testing techniques. Most developers take for granted the need to use tools such as JUnit for comprehensive, automated testing, but there is little consensus on how to apply unit testing to the...
Tags: Oracle Corp., Storage, Databases, Hardware, Enterprise Software, Software, Data Management
White papers 2005-07-01
Java Enterprise in a Nutshell: JUnit and Cactus
Software quality assurance is a subject of study in itself. Instead, what this paper covers is the subset of software testing referred to as unit testing, which attempts to verify the correct functional behavior of software at various levels of granularity. A "Unit" may be a method on a class,...
Tags: Software, Software Quality Assurance, Java, Class, Unit, Tools & Techniques, Management
Book chapters 2005-11-18
Testing Java in an Object-Oriented Way
In object-oriented software development, the system is developed as a collaborative collection of objects. Messages are the heart of the communication between these objects. Most Java-based software development projects employ unit testing, which mainly tests the system's behavior. Yet, one rarely tests the object-oriented nature of the written program. Object-oriented...
Tags: Java, Object-oriented, Ooa/Ood/Oop, Software Development, Software/Web Development
White papers 2006-03-28
Extending Oracle WebLogic Workshop 10 With Ant
Oracle WebLogic Workshop has made major advances with version 10, particularly in the design-build-run development cycle. The productivity gains from using the publish capabilities of Workshop make the development process qualitatively better. Advanced products such as Oracle WebLogic Portal are very difficult, if not impossible, to use without the help...
Tags: Oracle Corp., Oracle WebLogic Workshop, Productivity, Portals, Development Tools, Internet, Software Development, Software/Web Development
White papers 2008-07-01
Out-of-Container EJB 3.0 Testing With Oracle Entity Test Harness
Test-Driven Development, a core practice of eXtreme Programming, revolutionized the development of object-oriented applications by making application testing a requirement, not an afterthought. It calls for developers to devise unit tests for each class they build. Many tools, utilities, and frameworks - such as JUnit and HttpUnit - are available...
Tags: Oracle Corp., EJB, J2Ee, Application Servers, Middleware, Enterprise Software, Software Development, Software/Web Development, Software
White papers
  • << Previous
  • page 1 of 1
  • Next >>


Help Desk Trouble Ticket Form
The Help Desk Trouble Ticket is an important document for the technical support professional. This form contains all the essential fields for maintain ...
Buy Now
Cisco IOS Command Chart (IOS v.12+)
Becoming proficient with Cisco equipment means remembering a whole new set of commands. These command charts give you a quick way to look up the needed IOS commands and switches when you need them.
Buy Now