Moved briar-android tests into their respective packages.

This commit is contained in:
akwizgran
2016-08-03 13:46:30 +01:00
parent 9a32a13767
commit 4a4366078a
7 changed files with 8 additions and 26 deletions

View File

@@ -0,0 +1,27 @@
package org.briarproject.android;
import org.briarproject.android.controller.PasswordController;
import org.briarproject.android.controller.SetupController;
/**
* This class exposes the PasswordController and SetupController and offers the
* possibility to override them.
*/
public class TestChangePasswordActivity extends ChangePasswordActivity {
public PasswordController getPasswordController() {
return passwordController;
}
public SetupController getSetupController() {
return setupController;
}
public void setPasswordController(PasswordController passwordController) {
this.passwordController = passwordController;
}
public void setSetupController(SetupController setupController) {
this.setupController = setupController;
}
}