FileDocCategorySizeDatePackage
MediaRecorderResetStateUnitTest.javaAPI DocAndroid 1.5 API2408Wed May 06 22:42:00 BST 2009com.android.mediaframeworktest.unit

MediaRecorderResetStateUnitTest

public class MediaRecorderResetStateUnitTest extends android.test.AndroidTestCase implements MediaRecorderMethodUnderTest
Unit test class to test the set of valid and invalid states that MediaRecorder.reset() method can be called.

Fields Summary
private MediaRecorderStateUnitTestTemplate
mTestTemplate
Constructors Summary
Methods Summary
public voidcheckStateErrors(MediaRecorderStateErrors stateErrors)
1. It is valid to call reset() in the following states: {Prepared, Initial, Initialized, DataSourceConfigured, Recording, Error}. 2. It is invalid to call reset() in the following states: {}

param
stateErrors the MediaRecorderStateErrors to check against.

    
                                                       
        
        // Valid states.
        assertTrue(!stateErrors.errorInPreparedState);
        assertTrue(!stateErrors.errorInRecordingState);
        assertTrue(!stateErrors.errorInInitialState);
        assertTrue(!stateErrors.errorInInitialStateAfterReset);
        assertTrue(!stateErrors.errorInInitialStateAfterStop);
        assertTrue(!stateErrors.errorInInitializedState);
        assertTrue(!stateErrors.errorInErrorState);
        assertTrue(!stateErrors.errorInDataSourceConfiguredState);
        
        // Invalid states.
    
public voidinvokeMethodUnderTest(android.media.MediaRecorder recorder)

        recorder.reset();
    
public voidtestReset()

        mTestTemplate.runTestOnMethod(this);
    
public java.lang.StringtoString()

        return "reset()";