XML – Software Testing Tools Guide https://www.testingtoolsguide.net A comprehensive software testing tools listing Tue, 24 Jan 2017 11:08:18 +0000 en-US hourly 1 https://wordpress.org/?v=5.3.21 https://www.testingtoolsguide.net/wp-content/uploads/2016/11/cropped-icon-32x32.png XML – Software Testing Tools Guide https://www.testingtoolsguide.net 32 32 XMLMessageTest https://www.testingtoolsguide.net/tools/xmlmessagetest/ https://www.testingtoolsguide.net/tools/xmlmessagetest/#respond Wed, 02 Nov 2016 17:26:57 +0000 http://www.testingtoolsguide.net/tools/xmlmessagetest/ There are a number of open-source unit testing tools available. So why another one? Well, this one addresses a specific…

The post XMLMessageTest appeared first on Software Testing Tools Guide.

]]>
There are a number of open-source unit testing tools available. So why another one?

Well, this one addresses a specific need – an easy way to test XML-based servers. If you have a server that communicates with clients via XML messages, you can end up putting a lot of effort into using one of the unit-testing frameworks to test all the messages. Just think of all the code needed to set up communications, construct messages, and verify responses.

A simple alternative is to document XML messages and expected responses, without having to write any code. Let XmlMessageTest send each XML message to the server, verify returned messages against expected results, and produce a simple report of test results.
XmlMessageTest is written in Java and should be able to run any Java-enabled platform. It can also be easily integrated into your build process.

The post XMLMessageTest appeared first on Software Testing Tools Guide.

]]>
https://www.testingtoolsguide.net/tools/xmlmessagetest/feed/ 0
XMLTestSuite https://www.testingtoolsguide.net/tools/xmltestsuite/ https://www.testingtoolsguide.net/tools/xmltestsuite/#respond Wed, 02 Nov 2016 17:26:57 +0000 http://www.testingtoolsguide.net/tools/xmltestsuite/ XmlTestSuite provides a powerful way to test web applications. Check site structure: HTML pages are well formed and links are…

The post XMLTestSuite appeared first on Software Testing Tools Guide.

]]>
XmlTestSuite provides a powerful way to test web applications.

  • Check site structure:
    HTML pages are well formed and links are valid
  • Check the content of pages
    Use Javascript variables, XPath expressions, database queries
  • Check the way the site works:
    Run test scenarios, written in XML

The post XMLTestSuite appeared first on Software Testing Tools Guide.

]]>
https://www.testingtoolsguide.net/tools/xmltestsuite/feed/ 0
XMLUnit https://www.testingtoolsguide.net/tools/xmlunit/ https://www.testingtoolsguide.net/tools/xmlunit/#respond Wed, 02 Nov 2016 17:26:57 +0000 http://www.testingtoolsguide.net/tools/xmlunit/ When testing XML your application creates, simple string comparisons don’t cut it as there are many different ways the same…

The post XMLUnit appeared first on Software Testing Tools Guide.

]]>
When testing XML your application creates, simple string comparisons don’t cut it as there are many different ways the same XML content is serialized to a string. It doesn’t even stop with serialization as sometimes you don’t care for the order of XML elements and sometimes you do.

XMLUnit provides you with the tools to verify the XML you emit is the one you want to create. It provides helpers to validate against an XML Schema, assert the values of XPath queries or compare XML documents against expected outcomes.

The most important part is a diff-engine that provides you with full control over what kind of difference is important to you and which part of the generated document to compare with which part of your reference document.

The post XMLUnit appeared first on Software Testing Tools Guide.

]]>
https://www.testingtoolsguide.net/tools/xmlunit/feed/ 0
XUnit https://www.testingtoolsguide.net/tools/xunit/ https://www.testingtoolsguide.net/tools/xunit/#respond Wed, 02 Nov 2016 17:26:57 +0000 http://www.testingtoolsguide.net/tools/xunit/ XUnit is to XML-oriented Programming as JUnit is to Java programs : XUnit uses Active Tags as a simple framework to write repeatable tests. With XUnit,…

The post XUnit appeared first on Software Testing Tools Guide.

]]>
XUnit is to XML-oriented Programming as JUnit is to Java programs : XUnit uses Active Tags as a simple framework to write repeatable tests. With XUnit, you can well-try and improve your own Active Tags program as well as external XML processes such as XSLT. But you are also encouraged to use XUnit for testing Java programs that are producing XML documents.

The post XUnit appeared first on Software Testing Tools Guide.

]]>
https://www.testingtoolsguide.net/tools/xunit/feed/ 0
SonarQube https://www.testingtoolsguide.net/tools/sonarqube/ https://www.testingtoolsguide.net/tools/sonarqube/#respond Wed, 02 Nov 2016 17:24:56 +0000 http://www.testingtoolsguide.net/tools/sonarqube/ Continuous Code Quality

The post SonarQube appeared first on Software Testing Tools Guide.

]]>
Continuous Code Quality

The post SonarQube appeared first on Software Testing Tools Guide.

]]>
https://www.testingtoolsguide.net/tools/sonarqube/feed/ 0
ReSharper https://www.testingtoolsguide.net/tools/resharper/ https://www.testingtoolsguide.net/tools/resharper/#respond Wed, 02 Nov 2016 17:24:12 +0000 http://www.testingtoolsguide.net/tools/resharper/ ReSharper extends Visual Studio with over 2000 on-the-fly code inspections for C#, VB.NET, ASP.NET, JavaScript, TypeScript and other technologies. For most inspections,…

The post ReSharper appeared first on Software Testing Tools Guide.

]]>
ReSharper extends Visual Studio with over 2000 on-the-fly code inspections for C#, VB.NET, ASP.NET, JavaScript, TypeScript and other technologies. For most inspections, ReSharper provides quick-fixes (light bulbs) to improve code in one way or another.

The post ReSharper appeared first on Software Testing Tools Guide.

]]>
https://www.testingtoolsguide.net/tools/resharper/feed/ 0
PMD https://www.testingtoolsguide.net/tools/pmd/ https://www.testingtoolsguide.net/tools/pmd/#respond Wed, 02 Nov 2016 17:23:31 +0000 http://www.testingtoolsguide.net/tools/pmd/ PMD is a source code analyzer. It finds common programming flaws like unused variables, empty catch blocks, unnecessary object creation,…

The post PMD appeared first on Software Testing Tools Guide.

]]>
PMD is a source code analyzer. It finds common programming flaws like unused variables, empty catch blocks, unnecessary object creation, and so forth. It supports Java, JavaScript, Salesforce.com Apex, PLSQL, Apache Velocity, XML, XSL.
Additionally it includes CPD, the copy-paste-detector. CPD finds duplicated code in Java, C, C++, C#, Groovy, PHP, Ruby, Fortran, JavaScript, PLSQL, Apache Velocity, Scala, Objective C, Matlab, Python, Go, Swift and Salesforce.com Apex.

The post PMD appeared first on Software Testing Tools Guide.

]]>
https://www.testingtoolsguide.net/tools/pmd/feed/ 0
LinkChecker https://www.testingtoolsguide.net/tools/linkchecker/ https://www.testingtoolsguide.net/tools/linkchecker/#respond Wed, 02 Nov 2016 17:22:17 +0000 http://www.testingtoolsguide.net/tools/linkchecker/ LinkChecker is a free, GPL licensed website validator. LinkChecker checks links in web documents or full websites.

The post LinkChecker appeared first on Software Testing Tools Guide.

]]>
LinkChecker is a free, GPL licensed website validator. LinkChecker checks links in web documents or full websites.

The post LinkChecker appeared first on Software Testing Tools Guide.

]]>
https://www.testingtoolsguide.net/tools/linkchecker/feed/ 0
HttpMaster https://www.testingtoolsguide.net/tools/httpmaster/ https://www.testingtoolsguide.net/tools/httpmaster/#respond Wed, 02 Nov 2016 17:21:45 +0000 http://www.testingtoolsguide.net/tools/httpmaster/ API and web test automation

The post HttpMaster appeared first on Software Testing Tools Guide.

]]>
API and web test automation

The post HttpMaster appeared first on Software Testing Tools Guide.

]]>
https://www.testingtoolsguide.net/tools/httpmaster/feed/ 0
Fortify https://www.testingtoolsguide.net/tools/fortify/ https://www.testingtoolsguide.net/tools/fortify/#respond Wed, 02 Nov 2016 17:21:29 +0000 http://www.testingtoolsguide.net/tools/fortify/ HPE Security Fortify offers end-to-end application security solutions with the flexibility of testing on-premise and on-demand to cover the entire…

The post Fortify appeared first on Software Testing Tools Guide.

]]>
HPE Security Fortify offers end-to-end application security solutions with the flexibility of testing on-premise and on-demand to cover the entire software development lifecycle.

The post Fortify appeared first on Software Testing Tools Guide.

]]>
https://www.testingtoolsguide.net/tools/fortify/feed/ 0