Skip to content

Commit

Permalink
Updated code based on review
Browse files Browse the repository at this point in the history
  • Loading branch information
aanorbel committed Nov 27, 2023
1 parent 80731aa commit 01d8bc0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,6 @@ class RunTestsActivity : AbstractActivity() {
}
}

// TODO(aanorbel) Update button color from theme
private fun selectAllBtnStatusObserver(selectAllBtnStatus: String?) {
if (!TextUtils.isEmpty(selectAllBtnStatus)) {
when (selectAllBtnStatus) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,11 @@ import org.openobservatory.engine.BaseNettest
import org.openobservatory.ooniprobe.common.PreferenceManager
import org.openobservatory.ooniprobe.test.test.AbstractTest

/**
* This class is used to create [AbstractTest] dynamically for all instances where a Test Suite is required.
* It is used to create a test suite from a Descriptor.
* It acts as a bridge between the Descriptor format and the [AbstractSuite].
*/
class DynamicTestSuite(
name: String,
@StringRes title: Int,
Expand Down

0 comments on commit 01d8bc0

Please sign in to comment.