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,18 @@
package org.briarproject.android;
import org.briarproject.android.controller.SetupController;
/**
* This class exposes the SetupController and offers the possibility to
* override it.
*/
public class TestSetupActivity extends SetupActivity {
public SetupController getController() {
return setupController;
}
public void setController(SetupController setupController) {
this.setupController = setupController;
}
}