Test Failed
Push — main ( 310e6d...a95597 )
by Ehsan
06:01 queued 02:56
created

src/ReTweetable.ts   A

Complexity

Total Complexity 1
Complexity/F 1

Size

Lines of Code 12
Function Count 1

Duplication

Duplicated Lines 0
Ratio 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 9
mnd 0
bc 0
fnc 1
dl 0
loc 12
ccs 2
cts 2
cp 1
rs 10
bpm 0
cpm 1
noi 0
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A ReTweetableAbstract.isReTweetable 0 2 1
1
export interface ReTweetableInterface {
2
    retweetError: string;
3
4
    isReTweetable: () => boolean;
5
}
6
7 3
export abstract class ReTweetableAbstract implements ReTweetableInterface {
8 160
    retweetError = '';
9
10
    abstract isReTweetable(): boolean;
11
}
12