push
github
56 of 145 branches covered (38.62%)
48 of 50 new or added lines in 5 files covered. (96.0%)
3395 existing lines in 78 files now uncovered.8599 of 20189 relevant lines covered (42.59%)
701.76 hits per line
UNCOV
1
|
/** @format */
|
|
UNCOV
2
|
|
× |
3 |
define([ |
× |
UNCOV
4
|
"dojo/_base/declare",
|
× |
UNCOV
5
|
"dojo/topic",
|
× |
UNCOV
6
|
"dijit/form/RadioButton"
|
× |
UNCOV
7
|
], function (declare, topic, RadioButton) {
|
× |
8 |
return declare("lsmb/SubscribeRadioButton", [RadioButton], { |
× |
UNCOV
9
|
topic: "", |
× |
UNCOV
10
|
update: function (targetValue) { |
× |
11 |
this.set("checked", targetValue); |
× |
UNCOV
12
|
}, |
× |
UNCOV
13
|
postCreate: function () { |
× |
14 |
var self = this; |
× |
15 |
this.inherited(arguments); |
× |
UNCOV
16
|
|
× |
17 |
this.own(
|
× |
UNCOV
18
|
topic.subscribe(self.topic, function (targetValue) {
|
× |
19 |
self.update(targetValue); |
× |
UNCOV
20
|
}) |
× |
UNCOV
21
|
); |
× |
UNCOV
22
|
} |
× |
UNCOV
23
|
}); |
× |
UNCOV
24
|
}); |
× |