Test.Results Class
Convenience type for storing and aggregating test result information.
Methods
include
    
        
            (
    
    
        
            Void
        
    
    
    
    
    
    
    
    - 
                    
                        result
Includes results from another results object into this one.
Parameters:
- 
                    
                        resultTest.ResultsThe results object to include. 
Returns:
                
                    
                        Void:
                    
                
            
        Properties
duration
    Int
    
    
    
    
    
    Amount of time (ms) it took to complete testing.
errors
    Int
    
    
    
    
    
    Number of errors that occur in non-test methods.
failed
    Int
    
    
    
    
    
    Number of failed tests.
ignored
    Int
    
    
    
    
    
    Number of ignored tests.
passed
    Int
    
    
    
    
    
    Number of passed tests.
total
    Int
    
    
    
    
    
    Number of total tests.
