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

ReTweetableAbstract   A

Complexity

Total Complexity 1

Size/Duplication

Total Lines 5
Duplicated Lines 0 %

Test Coverage

Coverage 100%

Importance

Changes 0
Metric Value
wmc 1
eloc 5
dl 0
loc 5
ccs 2
cts 2
cp 1
rs 10
c 0
b 0
f 0

1 Function

Rating   Name   Duplication   Size   Complexity  
A 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