Test.Results Class
Convenience type for storing and aggregating test result information.
Methods
include
    
        
            (
    
    
    
    
    
    
    
    
    
    - 
                    
                        
result 
Includes results from another results object into this one.
Parameters:
- 
                    
                        
resultTest.ResultsThe results object to include.
 
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.
