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

MediaRecorderStopStateUnitTest

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

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

param
stateErrors the MediaRecorderStateErrors to check against.


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

        recorder.stop();
    
public voidtestStop()

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

        return "stop()";