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/on",
|
× |
UNCOV
6
|
"dojo/topic",
|
× |
UNCOV
7
|
"dijit/form/CheckBox"
|
× |
UNCOV
8
|
], function (declare, on, topic, CheckBox) {
|
× |
9 |
return declare("lsmb/PublishCheckBox", [CheckBox], { |
× |
UNCOV
10
|
topic: "", |
× |
UNCOV
11
|
publish: function (targetValue) { |
× |
12 |
topic.publish(this.topic, targetValue);
|
× |
UNCOV
13
|
}, |
× |
UNCOV
14
|
postCreate: function () { |
× |
15 |
var self = this; |
× |
16 |
this.inherited(arguments); |
× |
17 |
this.own(
|
× |
UNCOV
18
|
on(this, "change", function (targetValue) { |
× |
19 |
self.publish(targetValue); |
× |
UNCOV
20
|
}) |
× |
UNCOV
21
|
); |
× |
UNCOV
22
|
} |
× |
UNCOV
23
|
}); |
× |
UNCOV
24
|
}); |
× |