Design
test_soa.txt
Associated article: Testing Service Oriented Architectures
Tags: Tools Design
Published source code accompanying the article by Arunava Chatterjee in which he examines why traditional testing techniques can assume defective code can be precisely determined, although this isn't always the case with SOA.
Testing Service Oriented Architectures
by Arunava Chatterjee
Example 1:
#read the methods and responses from test.properties
fis = FileInputStream.new("test.properties")
@properties = Properties.new
@properties.load(fis)
fis.close
keys = @properties.keys
#add methods to return the recorded ...


