whitewind664/sdp

View on GitHub
app/src/main/java/com/github/gogetters/letsgo/database/user/UserBundleProvider.kt

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
package com.github.gogetters.letsgo.database.user

import java.io.Serializable

/**
 * This class has been created to enable testing of code that contains a LetsGoUser
 * without actually connecting to the database. This can be done by writing a mock
 * subclass to this class.
 */
abstract class UserBundleProvider: Serializable {
    abstract fun getUserBundle(): UserBundle?
}