<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Software Testing Tools Blog - Testertools &#187; Java</title>
	<atom:link href="http://www.testertools.com/blog/category/java/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.testertools.com/blog</link>
	<description>The latest news and blog information from testertools.com</description>
	<lastBuildDate>Fri, 03 Feb 2012 11:24:16 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>7 mistakes of software testing</title>
		<link>http://www.testertools.com/blog/7-mistakes-of-software-testing/</link>
		<comments>http://www.testertools.com/blog/7-mistakes-of-software-testing/#comments</comments>
		<pubDate>Mon, 23 Jan 2012 18:23:36 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Mistakes]]></category>
		<category><![CDATA[Software Testing]]></category>

		<guid isPermaLink="false">http://www.testertools.com/blog/?p=2347</guid>
		<description><![CDATA[<br/>JCGs (Java Code Geeks)  have released an article on common mistakes of Software Testing.
Seven mistakes of software testing lists a number of common mistakes that are made in each of the test phases.
Though most developers know the importance of testing, it seems that a   lot of them still aren’t testing enough. And ]]></description>
			<content:encoded><![CDATA[<br/><p><a href="http://www.javacodegeeks.com/p/about-jcgs.html"><a href="http://www.techieday.com/wp-content/uploads/2011/05/ipad-java.jpg"><img class="alignleft" src="http://www.techieday.com/wp-content/uploads/2011/05/ipad-java.jpg" alt="" width="300" height="300" /></a>JCGs (Java Code Geeks) </a> have released an article on common mistakes of Software Testing.</p>
<p><a href="http://www.javacodegeeks.com/2012/01/7-mistakes-of-software-testing.html">Seven mistakes of software testing</a> lists a number of common mistakes that are made in each of the test phases.</p>
<blockquote><p>Though most developers know the importance of testing, it seems that a   lot of them still aren’t testing enough. And if they write tests, they   test just test wrong.</p>
<p><a name="more"></a><strong>UNIT TESTS</strong></p>
<p>If some tests are written in applications, most of them will be unit   tests. It’s easy to test a utility class by just calling all utility   methods, passing some values and checking if the expected result is   returned.</p>
<p>A <strong>first mistake</strong> arises here. Most people don’t think  out of the  box, or not enough. You can test that 1 + 1 =2 , that 2 + 1 =  3 and that  3 + 1 = 4. But what’s the benefit of doing almost the same  test 3  times? It’s better to test the boundary cases. Are the arguments  of the  sum( ) method primitive types or Objects? If they are Objects,  what  happens if you pass null values? If an exception is thrown, is  that the  expected one? Does it clearly tell what the problem is?</p></blockquote>
<p><strong>JCG </strong>is an independent online community focused on  creating the ultimate Java-to-Java developers resource center; targeted  at the technical architect, technical team lead (senior developer),  project manager and junior developers alike. JCGs serve the Java, Scala,  Android, SOA, Agile and Telecom communities with daily news written by  domain experts, articles, tutorials, reviews, announcements, code  snippets and open source projects.</p>
<p>To read the full article visit <a href="http://www.javacodegeeks.com/2012/01/7-mistakes-of-software-testing.html">Seven mistakes of software testing</a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.testertools.com/blog/7-mistakes-of-software-testing/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>JBoss Release Byteman 2.0</title>
		<link>http://www.testertools.com/blog/jboss-release-byteman-2-0/</link>
		<comments>http://www.testertools.com/blog/jboss-release-byteman-2-0/#comments</comments>
		<pubDate>Fri, 20 Jan 2012 14:37:44 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Byteman]]></category>
		<category><![CDATA[JVM]]></category>

		<guid isPermaLink="false">http://www.testertools.com/blog/?p=2344</guid>
		<description><![CDATA[<br/>Byteman is a tool which simplifies tracing and testing of Java programs. Byteman allows you to insert extra Java code into your  application, either as it is loaded during JVM startup or even after it  has already started running. The injected code is allowed to access any  of your data and call ]]></description>
			<content:encoded><![CDATA[<br/><p><strong><img class="alignnone" src="https://issues.jboss.org/secure/attachment/12342795/byteman_logo_600px.png" alt="" width="600" height="281" />Byteman</strong> is a tool which simplifies tracing and testing of <strong>Java</strong> programs. Byteman allows you to insert extra Java code into your  application, either as it is loaded during JVM startup or even after it  has already started running. The injected code is allowed to access any  of your data and call any application methods, including where they are  private. You can inject code almost anywhere you want and there is no  need to prepare the original source code in advance nor do you have to  recompile, repackage or  redeploy your application. In fact you can  remove injected code and reinstall different code while the application  continues to execute.</p>
<p>The simplest use of Byteman is to install  code which traces what your application is doing. This can be used for  monitoring or debugging live deployments as well as for instrumenting  code under test so that you can be sure it has operated correctly. By  injecting code at very specific locations you can avoid the overheads  which often arise when you switch on debug or product trace. Also, you  decide what to trace when you run your application rather than when you  write it so you don&#8217;t need 100% hindsight to be able to obtain the  information you need.</p>
<p>When testing your application you can use  Byteman to inject faults or synchronization code, causing your  application to  perform  unusual or unexpected operations required to  exercise a test scenario. Byteman provides a library of built-in  functions which allow you to do anything from generating simple error  conditions to propagating complex error flows which require coordinated  actions in different parts of your application. However, you are not  limited to these operations. You can inject almost any Java code into  your application so long as the classes you refer to are in scope at the  injection point. You can also replace or extend the available built-in  functions by supplying a POJO (plain old java object) as a plugin. So,  Byteman makes it easy for you to program even the most complex test  scenarios.</p>
<p>Byteman works by modifying the bytecode of your  application classes at runtime. Since it only needs access to bytecode  this means it can modify library code whose source is either unavailable  or unable to be recompiled. This even includes the Java code which  forms part of the Java virtual machine, classes such as String, Thread  etc. So, with Byteman you can trace what the JVM is doing on behalf of  your application code or cause JVM classes like FileInputStream or Map  to throw exceptions when your application calls them.</p>
<p>Byteman  uses a clear, simple scripting language, based on a formalism called  Event Condition Action (ECA) rules  to specify where, when and how the  original Java code should be transformed. An event specifies a trigger  point, a location where you want code to be injected. When execution  reaches the trigger point the rule&#8217;s condition, a Java boolean  expression, is evaluated. The  Java expression (or sequence of  expressions) in the rule action is executed only when the condition  evaluates to true. Normally execution continues from the trigger point  once the inejcted code has been executed. However, rule actions may also  throw an exception or force an early return from the triggering method.</p>
<p>Byteman 2.0.0 is now available for download under the GNU LGPL. It requires a JDK 6 or higher JVM. The release includes a <a href="http://downloads.jboss.org/byteman/2.0.0/ProgrammersGuideSinglePage.html">user guide</a> which documents the scripting language and explains how to use byteman  to inject faults or tracing and monitoring code. There is also a <a href="http://community.jboss.org/wiki/ABytemanTutorial#top">tutorial</a> showing you how to get started with Byteman and a <a href="http://community.jboss.org/wiki/FaultInjectionTestingWithByteman#top">follow-up tutorial</a> explaining how to use Byteman to perform fault injection testing. See the <a href="http://www.jboss.org/byteman/documentation">documentation</a> page for more information.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.testertools.com/blog/jboss-release-byteman-2-0/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java GUI Testing Tool Squish Supports New &#8220;Indigo&#8221; Eclipse 3.7</title>
		<link>http://www.testertools.com/blog/java-gui-testing-tool-squish-supports-new-indigo-eclipse-3-7/</link>
		<comments>http://www.testertools.com/blog/java-gui-testing-tool-squish-supports-new-indigo-eclipse-3-7/#comments</comments>
		<pubDate>Fri, 08 Jul 2011 14:58:13 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Test Harnesses]]></category>
		<category><![CDATA["Indigo" Eclipse 3.7]]></category>
		<category><![CDATA[froglogic GmbH]]></category>
		<category><![CDATA[Harri Porten]]></category>
		<category><![CDATA[Java Rich Client Platform (RCP)]]></category>
		<category><![CDATA[Squish]]></category>

		<guid isPermaLink="false">http://www.testertools.com/blog/?p=2243</guid>
		<description><![CDATA[<br/>froglogic GmbH today announced support for the automated testing of Java  Rich Client Platform (RCP) applications based on the new &#8220;Indigo&#8221;  Eclipse 3.7 release.
Squish for Java is the leading  functional, cross-platform GUI and regression testing tool for creating  and executing automated GUI tests for Java SWT/RCP and AWT/Swing  applications.
Squish itself, ]]></description>
			<content:encoded><![CDATA[<br/><p><strong><a href="http://mail.froglogic.com/pg?image=header_left.png"><img class="alignleft" src="http://mail.froglogic.com/pg?image=header_left.png" alt="" width="325" height="140" /></a>froglogic GmbH</strong> today announced support for the automated testing of<strong> Java  Rich Client Platform (RCP)</strong> applications based on the new<strong> &#8220;Indigo&#8221;  Eclipse 3.7 </strong>release.</p>
<p><strong>Squish </strong>for Java is the leading  functional, cross-platform GUI and regression testing tool for creating  and executing automated GUI tests for Java SWT/RCP and AWT/Swing  applications.</p>
<p>Squish itself, and all the tests created  with it, are completely cross-platform, and work on Windows, Linux/Unix,  Mac OS X, and embedded Linux.</p>
<p>Support for testing  Eclipse 3.7 RCP applications with Squish is now available with the  upcoming Squish version 4.1 (currently in beta).</p>
<p>&#8220;Squish is one of the most mature and popular GUI Test Automation Tools  for Eclipse RCP/SWT GUIs. Supporting the test automation of applications  built on the latest Eclipse release 3.7 &#8211; as well continuing to support  those those built on older versions &#8211; is always a priority for us, as  part of our ongoing commitment to the Eclipse platform.&#8221;, -<strong> Harri  Porten, </strong>froglogic&#8217;s CTO.</p>
<p>Squish offers a versatile  testing framework for GUI applications with a choice of popular test  scripting languages (Python, JavaScript, Perl, and Tcl) that are  extended by Squish&#8217;s own library of test-specific functions. Squish also  provides open interfaces, several add-ons, integration with a variety  of test management tools, a powerful Eclipse-based IDE that supports the  creation and debugging of tests, and a complete set of command line  tools that support fully automated test runs.</p>
<p>Squish is  also ideal for use in organizations where a variety of GUI technologies  are used, since in addition to the support for Java SWT/Eclipse RCP and  AWT/Swing, Squish also supports the automated testing of applications  based on other GUI technologies such as Nokia&#8217;s Qt, QML/Qt Quick,  Web/DOM/HTML/AJAX, native Windows (MFC and .NET Forms), Mac OS X  Carbon/Cocoa, iOS CocoaTouch and others.</p>
<p>If you are interested in evaluating or purchasing Squish for Java or any other Squish edition, please contact <a href="mailto:sales@froglogic.com?subject=openPR.com%20contact">sales@froglogic.com</a> or visit <a href="http://www.froglogic.com/squish" target="_blank">www.froglogic.com/squish</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.testertools.com/blog/java-gui-testing-tool-squish-supports-new-indigo-eclipse-3-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Qt GUI Test Automation: froglogic Squish Supports Qt 4.7</title>
		<link>http://www.testertools.com/blog/qt-gui-test-automation-froglogic-squish-supports-qt-4-7/</link>
		<comments>http://www.testertools.com/blog/qt-gui-test-automation-froglogic-squish-supports-qt-4-7/#comments</comments>
		<pubDate>Thu, 30 Sep 2010 08:31:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Automated Testing]]></category>
		<category><![CDATA[Automated Testing Framework]]></category>
		<category><![CDATA[Java]]></category>
		<category><![CDATA[froglogic GmbH]]></category>
		<category><![CDATA[Harri Porten]]></category>
		<category><![CDATA[Squish]]></category>

		<guid isPermaLink="false">http://www.testertools.com/blog/?p=1932</guid>
		<description><![CDATA[<br/>froglogic GmbH today announced support for automated testing of Qt GUI applications based on the new Qt 4.7 release.
Squish is the leading test automation tool for cross-platform functional GUI regression tests that can test applications based on a variety of GUI technologies, including Nokia&#8217;s Qt Software Development Frameworks, Java SWT/Eclipse RCP, Java AWT/Swing, native Windows ]]></description>
			<content:encoded><![CDATA[<br/><p><strong>froglogic GmbH </strong>today announced support for automated testing of Qt GUI applications based on the <a href="http://qt.nokia.com/whatsnew">new Qt 4.7 release</a>.</p>
<p><strong>Squish</strong> is the leading test automation tool for <a href="http://www.froglogic.com/pg?id=Products&amp;category=squish&amp;sub=overview&amp;subsub=overview">cross-platform functional GUI regression tests</a> that can test applications based on a variety of GUI technologies, including Nokia&#8217;s Qt Software Development Frameworks,<strong> Java</strong> SWT/Eclipse RCP, Java AWT/Swing, native Windows MFC and .NET, Mac OS X Carbon/Cocoa, and Web/HTML/AJAX. Squish stands out from other GUI testing tools by giving test engineers the freedom to record and write tests using familiar scripting languages such as JavaScript, Perl, Python, and Tcl. Furthermore, Squish provides extremely tight integration with the specific GUI technologies it supports. This gives testers unprecedented access to the internals of the applications they are testing (to data items, controls, and widgets, etc.), and also leads to the production of very robust and stable GUI tests.</p>
<p>Squish itself, and all the tests created with it, are completely cross-platform, and work on Windows, Linux/Unix, Mac OS X, and embedded Linux.</p>
<p>Support for testing Qt 4.7-based applications with Squish is now available.</p>
<p><em>&#8220;We are delighted to announce support for Nokia&#8217;s latest Qt release—including support for brand new technologies such as Qt Quick and QML. Our customers can upgrade whenever they are ready, safe in the knowledge that their Squish tests will continue to reliably verify their applications&#8217; behaviors as well as any new Qt 4.7 features they start to utilize.&#8221; </em>—<strong>Harri Porten</strong>, froglogic&#8217;s CTO.</p>
<p>If you are interested in evaluating or purchasing Squish for Qt or any other Squish edition, please contact <a href="mailto:squish@froglogic.com">squish@froglogic.com</a> or visit <a href="http://www.froglogic.com/squish">www.froglogic.com/squish</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.testertools.com/blog/qt-gui-test-automation-froglogic-squish-supports-qt-4-7/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New Testertool &#8211; XPect</title>
		<link>http://www.testertools.com/blog/new-testertool-xpect/</link>
		<comments>http://www.testertools.com/blog/new-testertool-xpect/#comments</comments>
		<pubDate>Fri, 10 Sep 2010 14:45:57 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Unit Testing]]></category>
		<category><![CDATA[Java Code]]></category>
		<category><![CDATA[JMS systems]]></category>
		<category><![CDATA[JUnit]]></category>
		<category><![CDATA[XPect]]></category>

		<guid isPermaLink="false">http://www.testertools.com/blog/?p=1883</guid>
		<description><![CDATA[<br/>XPect is a Java based test messaging framework designed to use schema and validating editors  in order to define tests to be performed against message oriented  services.
The tool uses Java code to make  regression testing of message oriented systems via JUnit faster to  produce and more respondent to schema changes.
Although supporting ]]></description>
			<content:encoded><![CDATA[<br/><p><a href="http://testertools.com/xml-testing-tools/xpect/"><strong>XPect</strong></a> is a Java based test messaging framework designed to use schema and validating editors  in order to define tests to be performed against message oriented  services.</p>
<p>The tool uses <strong>Java code</strong> to make  regression testing of message oriented systems via<strong> JUnit</strong> faster to  produce and more respondent to schema changes.</p>
<p>Although supporting a small set HTTP services at present, the authors  have previously implemented a similar system for <strong>JMS systems </strong>and intends  for JMS to be supported by XPect.</p>
<p>Go to <a href="http://www.Testertools.com">Testertools.com</a> to view more information on <a href="http://testertools.com/xml-testing-tools/xpect/"><strong>XPect.</strong></a></p>
]]></content:encoded>
			<wfw:commentRss>http://www.testertools.com/blog/new-testertool-xpect/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Java Tool Squish now Supports Eclipse &#8220;Helios&#8221; 3.6</title>
		<link>http://www.testertools.com/blog/java-tool-squish-now-supports-eclipse-helios-3-6/</link>
		<comments>http://www.testertools.com/blog/java-tool-squish-now-supports-eclipse-helios-3-6/#comments</comments>
		<pubDate>Fri, 20 Aug 2010 08:43:04 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Eclipse 3.6]]></category>
		<category><![CDATA[froglogic GmbH]]></category>
		<category><![CDATA[Harri Porten]]></category>
		<category><![CDATA[Java Rich Client Platform (RCP)]]></category>

		<guid isPermaLink="false">http://www.testertools.com/blog/?p=1799</guid>
		<description><![CDATA[<br/>froglogic GmbH today announced support for automated testing of Java  Rich Client Platform (RCP) applications based on the new Eclipse 3.6 release code named Helios.
Squish for Java is the  leading, cross-platform functional GUI and  regression testing tool  enabling the creation and execution of  automated GUI tests for Java  SWT/RCP ]]></description>
			<content:encoded><![CDATA[<br/><p><strong><strong><a href="http://www.ergosign.de/images/clientlogos/froglogic.png"><img src="http://www.ergosign.de/images/clientlogos/froglogic.png" alt="froglogic" width="180" height="90" /></a></strong>froglogic GmbH</strong> today announced support for automated testing of <strong>Java  Rich Client Platform (RCP) </strong>applications based on the new <a href="http://www.eclipse.org/downloads/"><strong>Eclipse 3.6</strong></a> release code named Helios.</p>
<p>Squish for Java is the  leading, cross-platform functional GUI and  regression testing tool  enabling the creation and execution of  automated GUI tests for Java  SWT/RCP and AWT/Swing applications.</p>
<p>Squish itself, and  all the tests created with it, are completely  cross-platform, and work  on Windows, Linux/Unix, Mac OS X, and embedded  Linux.</p>
<p>Support for testing <strong>Eclipse 3.6 RCP</strong> applications with Squish is now available with Squish version 4.0.1.</p>
<p><a href="http://ajax.phpmagazine.net/upload/2007/12/ajax_test_and_performance_tool/squish33.png"><img src="http://ajax.phpmagazine.net/upload/2007/12/ajax_test_and_performance_tool/squish33.png" alt="froglocic" width="400" height="278" /></a></p>
<p>&#8220;As Solution Member of the Eclipse Foundation we are fully commited  to  the future of the Eclipse platform. Supporting the test automation  of  applications built on the latest Eclipse release 3.6, as well as  older  versions, is therefor of high importance to us and our  customers.&#8221;,  said <strong>Harri Porten</strong>, froglogic&#8217;s platform chief.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.testertools.com/blog/java-tool-squish-now-supports-eclipse-helios-3-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New TesterTools – Cargo</title>
		<link>http://www.testertools.com/blog/new-testertools-%e2%80%93-cargo/</link>
		<comments>http://www.testertools.com/blog/new-testertools-%e2%80%93-cargo/#comments</comments>
		<pubDate>Tue, 06 Apr 2010 05:24:10 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Container]]></category>
		<category><![CDATA[Functional]]></category>
		<category><![CDATA[Integration]]></category>
		<category><![CDATA[J2EE Module]]></category>
		<category><![CDATA[JSR88 Client Side]]></category>
		<category><![CDATA[Tests]]></category>

		<guid isPermaLink="false">http://www.testertools.com/blog/?p=679</guid>
		<description><![CDATA[<br/>
Here are some possible use cases for Cargo:
* To start containers for integration and functional tests
* To start containers for applications that require a container to be started (Plugins for IDEs, etc)
* As a framework to manipulate J2EE Module file including container-specific descriptors. For example it can be useful if you wish to implement the ]]></description>
			<content:encoded><![CDATA[<br/><p><img class="alignleft" title="Cargo" src="http://cargo.codehaus.org/download/attachments/8416/access-layers.jpg" alt="" width="625" height="579" /></p>
<p><strong>Here are some possible use cases for Cargo:</strong></p>
<p>* To start containers for<strong> integration</strong> and<strong> functional tests</strong></p>
<p>* To start containers for applications that require a container to be started (<strong>Plugins</strong> for <strong>IDEs</strong>, etc)</p>
<p>* As a <strong>framewor</strong>k to manipulate <strong>J2EE Module</strong> file including <strong>container-specific descriptors</strong>. For example it can be useful if you wish to implement the <strong>JSR88 client side</strong></p>
<p>* To generate container configurations for deployment. For example you may have an application running on <strong>Tomcat 5</strong>.x and you may want to package a fully working <strong>configuration</strong> (server.xml, webapps/ dir with your WAR files in there, etc).</p>
]]></content:encoded>
			<wfw:commentRss>http://www.testertools.com/blog/new-testertools-%e2%80%93-cargo/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>New TesterTools &#8211; x.Link</title>
		<link>http://www.testertools.com/blog/new-testertools-x-link/</link>
		<comments>http://www.testertools.com/blog/new-testertools-x-link/#comments</comments>
		<pubDate>Tue, 30 Mar 2010 12:41:46 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[David George]]></category>
		<category><![CDATA[J2EE]]></category>
		<category><![CDATA[j2ee profiler]]></category>
		<category><![CDATA[java profiler]]></category>
		<category><![CDATA[performance profiler]]></category>
		<category><![CDATA[profile]]></category>
		<category><![CDATA[profiler]]></category>
		<category><![CDATA[X LINK]]></category>

		<guid isPermaLink="false">http://www.testertools.com/blog/?p=645</guid>
		<description><![CDATA[<br/>x.Link is a Java J2EE performance profiler. Using byte code modification it has a minimal impact on running systems and can even be used in production systems.x.Link offers an alternative to commercial J2EE profilers.
For furture information on this product click here 
View TesterTools dedicated page for this tool.
]]></description>
			<content:encoded><![CDATA[<br/><p><a href="http://www.abcseo.com/xlink/index.htm" target="_blank">x.Link</a> is a Java<strong> J2EE </strong>performance profiler. Using byte code modification it has a minimal impact on running systems and can even be used in production systems.<strong>x.Link </strong>offers an alternative to commercial <strong>J2EE</strong> profilers.</p>
<p>For furture information on this product click <a href="http://www.abcseo.com/index.htm" target="_blank">here </a></p>
<p>View <a href="http://www.testertools.com/11543/x.Link_-_a_Java_J2EE_performance_profiler_.html" target="_blank">TesterTools</a> dedicated page for this tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.testertools.com/blog/new-testertools-x-link/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New TesterTools &#8211; JCR</title>
		<link>http://www.testertools.com/blog/new-testertools-jcr/</link>
		<comments>http://www.testertools.com/blog/new-testertools-jcr/#comments</comments>
		<pubDate>Tue, 09 Feb 2010 11:27:25 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[JCR]]></category>
		<category><![CDATA[Python-based]]></category>
		<category><![CDATA[Rietveld]]></category>

		<guid isPermaLink="false">http://www.testertools.com/blog/?p=493</guid>
		<description><![CDATA[<br/>JCR (which stands for Java Code Reviewer) is another Python-based tool. Unlike the others, it does not integrate directly with source code management systems; it&#8217;s designed to have whole files available for review. JCR emphasizes a more formal process, with tracking of who did what and a review meeting to take action on code comments.
For ]]></description>
			<content:encoded><![CDATA[<br/><p><strong><a href="http://jcodereview.sourceforge.net/">JCR </a>(which stands for Java Code Reviewer)</strong> is another <strong>Python-based</strong> tool. Unlike the others, it does not integrate directly with source code management systems; it&#8217;s designed to have whole files available for review. JCR emphasizes a more formal process, with tracking of who did what and a review meeting to take action on code comments.</p>
<p>For a large-scale, formal development organization, I&#8217;d look at JCR first. Web-based and open-source projects may find Review Board or Codestriker to be a better fit. While <strong>Rietveld</strong> is worth watching, and has certainly helped make many more developers think seriously about code reviews simply due to Google&#8217;s reach, it&#8217;s going to have to work hard to catch up in features to the pre-existing projects.</p>
<div id="attachment_502" class="wp-caption aligncenter" style="width: 650px"><img class="size-full wp-image-502" title="jcr" src="http://www.testertools.com/blog/wp-content/uploads/2010/02/jcr.jpg" alt="jcr" width="640" height="329" /><p class="wp-caption-text">jcr</p></div>
<p>View <a href="http://www.testertools.com/11218/JCR_-_Java_Code_Reviewer.html" target="_blank">TesterTools</a> dedicated page for this tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.testertools.com/blog/new-testertools-jcr/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>New TesterTools &#8211; Jalopy</title>
		<link>http://www.testertools.com/blog/new-testertools-jalopy/</link>
		<comments>http://www.testertools.com/blog/new-testertools-jalopy/#comments</comments>
		<pubDate>Tue, 02 Feb 2010 09:52:10 +0000</pubDate>
		<dc:creator>Andrew</dc:creator>
				<category><![CDATA[Java]]></category>
		<category><![CDATA[Jalopy]]></category>
		<category><![CDATA[source code formatter]]></category>
		<category><![CDATA[Sun Java programming language]]></category>
		<category><![CDATA[valid Java source code]]></category>
		<category><![CDATA[widely configurable rules]]></category>

		<guid isPermaLink="false">http://www.testertools.com/blog/?p=487</guid>
		<description><![CDATA[<br/>Jalopy is a source code formatter for the Sun Java programming language. It layouts any valid Java source code according to some widely configurable rules; to meet a certain coding style without putting a formatting burden on individual developers.

View TesterTools dedicated page for this tool.
]]></description>
			<content:encoded><![CDATA[<br/><p><strong><a href="http://jalopy.sourceforge.net/">Jalopy</a></strong> is a <strong>source code formatter</strong> for the<strong> Sun Java programming language</strong>. It layouts any <strong>valid Java source code</strong> according to some <strong>widely configurable rules</strong>; to meet a certain coding style without putting a formatting burden on individual developers.</p>
<p><img class="alignnone" title="jalopy" src="http://www.triemax.com/products/jalopy/manual/images/idea_log.png" alt="" width="519" height="505" /></p>
<p>View <a href="http://www.testertools.com/11186/Jalopy_-_Source_code_formatter_for_Java_programming_language.html" target="_blank">TesterTools</a> dedicated page for this tool.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.testertools.com/blog/new-testertools-jalopy/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

