github
366 of 541 branches covered (67.65%)
Branch coverage included in aggregate %.
782 of 916 new or added lines in 19 files covered. (85.37%)
2264 existing lines in 22 files now uncovered.862 of 3387 relevant lines covered (25.45%)
2126.66 hits per line
1 |
using SatisfactoryTree.Models; |
|
2 |
|
|
3 |
namespace SatisfactoryTree.Helpers
|
|
4 |
{ |
|
5 |
public static class ItemPoolTierA |
|
6 |
{ |
|
7 |
public static Item PlutoniumFuelRod() |
|
UNCOV
8
|
{ |
× |
UNCOV
9
|
return new Item(10, "Plutonium Fuel Rod", |
× |
UNCOV
10
|
"PlutoniumFuelRod_256.png",
|
× |
UNCOV
11
|
ItemType.Production, |
× |
UNCOV
12
|
ResearchType.Tier8) |
× |
UNCOV
13
|
{ |
× |
UNCOV
14
|
Recipes = |
× |
UNCOV
15
|
{ |
× |
UNCOV
16
|
new Recipe(
|
× |
UNCOV
17
|
new()
|
× |
UNCOV
18
|
{ |
× |
UNCOV
19
|
{ "Encased Plutonium Cell", 7.5M }, |
× |
UNCOV
20
|
{ "Steel Beam", 4.5M }, |
× |
UNCOV
21
|
{ "Electromagnetic Control Rod", 1.5M }, |
× |
UNCOV
22
|
{ "Heat Sink", 2.5M } |
× |
UNCOV
23
|
}, |
× |
UNCOV
24
|
new()
|
× |
UNCOV
25
|
{ |
× |
UNCOV
26
|
{ "Plutonium Fuel Rod", 0.25M } |
× |
UNCOV
27
|
}, |
× |
UNCOV
28
|
"Manufacturer")
|
× |
UNCOV
29
|
} |
× |
UNCOV
30
|
}; |
× |
UNCOV
31
|
} |
× |
32 |
|
|
33 |
|
|
34 |
} |
|
35 |
} |