mirror of
https://github.com/nextcloud/android.git
synced 2024-11-29 10:49:04 +03:00
proper code formatting
Signed-off-by: Andy Scherzinger <info@andy-scherzinger.de>
This commit is contained in:
parent
7d14c90b7d
commit
f744a2351d
1 changed files with 39 additions and 30 deletions
|
@ -65,7 +65,9 @@ class NotificationsActivityIT : AbstractIT() {
|
||||||
date.set(110, 2, 2, 10, 20, 30)
|
date.set(110, 2, 2, 10, 20, 30)
|
||||||
|
|
||||||
val notifications = ArrayList<Notification>()
|
val notifications = ArrayList<Notification>()
|
||||||
notifications.add(Notification(1,
|
notifications.add(
|
||||||
|
Notification(
|
||||||
|
1,
|
||||||
"files",
|
"files",
|
||||||
"user",
|
"user",
|
||||||
date.time,
|
date.time,
|
||||||
|
@ -79,13 +81,17 @@ class NotificationsActivityIT : AbstractIT() {
|
||||||
HashMap<String, RichObject>(),
|
HashMap<String, RichObject>(),
|
||||||
"link",
|
"link",
|
||||||
"icon",
|
"icon",
|
||||||
ArrayList<Action>()))
|
ArrayList<Action>()
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
val actions = ArrayList<Action>()
|
val actions = ArrayList<Action>()
|
||||||
actions.add(Action("Send usage", "link", "url", true))
|
actions.add(Action("Send usage", "link", "url", true))
|
||||||
actions.add(Action("Not now", "link", "url", false))
|
actions.add(Action("Not now", "link", "url", false))
|
||||||
|
|
||||||
notifications.add(Notification(1,
|
notifications.add(
|
||||||
|
Notification(
|
||||||
|
1,
|
||||||
"files",
|
"files",
|
||||||
"user",
|
"user",
|
||||||
date.time,
|
date.time,
|
||||||
|
@ -94,12 +100,15 @@ class NotificationsActivityIT : AbstractIT() {
|
||||||
"Help improve Nextcloud",
|
"Help improve Nextcloud",
|
||||||
"SubjectRich",
|
"SubjectRich",
|
||||||
HashMap<String, RichObject>(),
|
HashMap<String, RichObject>(),
|
||||||
"Do you want to help us to improve Nextcloud by providing some anonymize data about your setup and usage?",
|
"Do you want to help us to improve Nextcloud" +
|
||||||
|
" by providing some anonymize data about your setup and usage?",
|
||||||
"MessageRich",
|
"MessageRich",
|
||||||
HashMap<String, RichObject>(),
|
HashMap<String, RichObject>(),
|
||||||
"link",
|
"link",
|
||||||
"icon",
|
"icon",
|
||||||
actions))
|
actions
|
||||||
|
)
|
||||||
|
)
|
||||||
|
|
||||||
sut.runOnUiThread { sut.populateList(notifications) }
|
sut.runOnUiThread { sut.populateList(notifications) }
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue