fetchWorkBookListForTestDetails

abstract fun fetchWorkBookListForTestDetails(    testDetails: TestDetails,     @MainThread onSuccess: (List<WorkBook>) -> Unit,     @MainThread onFailure: (Throwable) -> Unit? = null)

Used to fetch a list of workbooks for the specified test.

Parameters

testDetails

the test for which the list of workbooks is to be fetched.

onSuccess

a callback that will be executed on the main thread, if the fetching operation was successful.

onFailure

an optional callback that will be executed on the main thread, if the fetching operation was un-successful.