A C D E G H I L M P R S U V Y 

A

assertFileEqualsFile(File, File) - Method in class com.amazonaws.test.AWSTestBase
Asserts that the contents of the two files are same.
assertFileEqualsStream(File, InputStream) - Method in class com.amazonaws.test.AWSTestBase
Asserts that the contents in the specified file are exactly equal to the contents read from the specified input stream.
assertFileEqualsStream(String, File, InputStream) - Method in class com.amazonaws.test.AWSTestBase
Asserts that the contents in the specified file are exactly equal to the contents read from the specified input stream.
assertNotEmpty(String) - Method in class com.amazonaws.test.AWSTestBase
Asserts that the specified String is not null and not empty.
assertStreamEqualsStream(InputStream, InputStream) - Method in class com.amazonaws.test.AWSTestBase
Asserts that the contents in the specified input streams are same.
assertStreamEqualsStream(String, InputStream, InputStream) - Method in class com.amazonaws.test.AWSTestBase
Asserts that the contents in the specified input streams are same.
assertStringEqualsStream(String, InputStream) - Method in class com.amazonaws.test.AWSTestBase
Asserts that the contents in the specified string are exactly equal to the contents read from the specified input stream.
assertValidException(AmazonServiceException) - Method in class com.amazonaws.test.AWSTestBase
Asserts that the specified AmazonServiceException is valid, meaning it has a non-empty, non-null value for its message, requestId, etc.
AWSTestBase - Class in com.amazonaws.test
 
AWSTestBase() - Constructor for class com.amazonaws.test.AWSTestBase
 

C

com.amazonaws.test - package com.amazonaws.test
 
com.amazonaws.test.util - package com.amazonaws.test.util
 
ConstantInputStream - Class in com.amazonaws.test.util
A test input stream that always return the same value.
ConstantInputStream(long, byte) - Constructor for class com.amazonaws.test.util.ConstantInputStream
 
ConstantInputStream(long, byte, boolean) - Constructor for class com.amazonaws.test.util.ConstantInputStream
 
createFile(long) - Method in class com.amazonaws.test.util.RandomTempFile
 
credentials - Static variable in class com.amazonaws.test.AWSTestBase
Shared AWS credentials, loaded from a properties file

D

DateUtils - Class in com.amazonaws.test.util
 
DateUtils() - Constructor for class com.amazonaws.test.util.DateUtils
 
doesFileEqualStream(File, InputStream) - Method in class com.amazonaws.test.AWSTestBase
Returns true if, and only if, the contents in the specified file are exactly equal to the contents read from the specified input stream.
doesStreamEqualStream(InputStream, InputStream) - Method in class com.amazonaws.test.AWSTestBase
Returns true if, and only if, the contents read from the specified input streams are exactly equal.
drainInputStream(InputStream) - Method in class com.amazonaws.test.AWSTestBase
 

E

equals(A, B) - Method in interface com.amazonaws.test.util.UnorderedCollectionComparator.CrossTypeComparator
 
equalUnorderedCollections(Collection<T>, Collection<T>) - Static method in class com.amazonaws.test.util.UnorderedCollectionComparator
Compares two unordered lists of the same type.
equalUnorderedCollections(Collection<A>, Collection<B>, UnorderedCollectionComparator.CrossTypeComparator<A, B>) - Static method in class com.amazonaws.test.util.UnorderedCollectionComparator
Compares two unordered lists of different types, using the specified cross-type comparator.

G

getBytesRead() - Method in class com.amazonaws.test.util.RandomInputStream
 
getRandomZerosCount() - Method in class com.amazonaws.test.util.ConstantInputStream
 
getWrappedInputStream() - Method in class com.amazonaws.test.util.ConstantInputStream
 

H

heapSummary() - Static method in enum com.amazonaws.test.util.Memory
Returns a summary information about the heap memory.

I

IndexValues - Class in com.amazonaws.test.util
Used to iterate through all possible combination of array index values given the array lengths.
IndexValues(int...) - Constructor for class com.amazonaws.test.util.IndexValues
Constructs an Iterable for all possible combination of array index values given the array lengths.
iterator() - Method in class com.amazonaws.test.util.IndexValues
 

L

lengthInBytes - Variable in class com.amazonaws.test.util.RandomInputStream
The requested amount of data contained in this random stream

M

Memory - Enum in com.amazonaws.test.util
Used to retrieve information about the JVM memory.

P

poolSummaries() - Static method in enum com.amazonaws.test.util.Memory
Returns a summary information about the memory pools.
progressChanged(ProgressEvent) - Method in class com.amazonaws.test.util.ProgressListenerWithEventCodeVerification
 
ProgressListenerWithEventCodeVerification - Class in com.amazonaws.test.util
Validates the events received by the progress listener.
ProgressListenerWithEventCodeVerification(ProgressEventType...) - Constructor for class com.amazonaws.test.util.ProgressListenerWithEventCodeVerification
 

R

RandomInputStream - Class in com.amazonaws.test.util
Test utility InputStream implementation that generates random ASCII data when read, up to the size specified when constructed.
RandomInputStream(long) - Constructor for class com.amazonaws.test.util.RandomInputStream
Constructs a new InputStream, which will return the specified amount of bytes of random ASCII characters.
RandomInputStream(long, boolean) - Constructor for class com.amazonaws.test.util.RandomInputStream
Creates a new random input stream of specified length, and specifies whether the stream should be full on binary or character data.
RandomTempFile - Class in com.amazonaws.test.util
Extension of File that creates a temporary file with a specified name in Java's temporary directory, as declared in the JRE's system properties.
RandomTempFile(String, long) - Constructor for class com.amazonaws.test.util.RandomTempFile
Creates, and fills, a temp file with the specified name and specified size of random ASCII data.
RandomTempFile(String, long, boolean) - Constructor for class com.amazonaws.test.util.RandomTempFile
Creates, and fills, a temp file with the specified name and specified size of random binary or character data.
RandomTempFile(File, String, long) - Constructor for class com.amazonaws.test.util.RandomTempFile
 
read(byte[], int, int) - Method in class com.amazonaws.test.util.ConstantInputStream
 
read() - Method in class com.amazonaws.test.util.ConstantInputStream
 
read(byte[], int, int) - Method in class com.amazonaws.test.util.RandomInputStream
 
read() - Method in class com.amazonaws.test.util.RandomInputStream
 
read() - Method in class com.amazonaws.test.util.UnreliableRandomInputStream
 
read(byte[], int, int) - Method in class com.amazonaws.test.util.UnreliableRandomInputStream
 
remainingBytes - Variable in class com.amazonaws.test.util.RandomInputStream
The number of bytes of data remaining in this random stream
reset() - Method in class com.amazonaws.test.util.ProgressListenerWithEventCodeVerification
 

S

setUpCredentials() - Static method in class com.amazonaws.test.AWSTestBase
 

U

UnorderedCollectionComparator - Class in com.amazonaws.test.util
This class includes some utility methods for comparing two unordered collections.
UnorderedCollectionComparator() - Constructor for class com.amazonaws.test.util.UnorderedCollectionComparator
 
UnorderedCollectionComparator.CrossTypeComparator<A,B> - Interface in com.amazonaws.test.util
A simple interface that attempts to compare objects of two different types
UnreliableRandomInputStream - Class in com.amazonaws.test.util
Subclass of RandomInputStream that, in addition to spitting out a set length of random characters, throws an IOException.
UnreliableRandomInputStream(long) - Constructor for class com.amazonaws.test.util.UnreliableRandomInputStream
Constructs a new unreliable random data input stream of the specified number of bytes.

V

valueOf(String) - Static method in enum com.amazonaws.test.util.Memory
Returns the enum constant of this type with the specified name.
values() - Static method in enum com.amazonaws.test.util.Memory
Returns an array containing the constants of this enum type, in the order they are declared.

Y

yyMMdd_hhmmss() - Static method in class com.amazonaws.test.util.DateUtils
Returns the current time in yyMMdd-hhmmss format.
A C D E G H I L M P R S U V Y 

Copyright © 2015. All rights reserved.