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 ItemPoolTierB |
|
6 |
{ |
|
7 |
public static Item PlutoniumWaste() |
|
UNCOV
8
|
{ |
× |
UNCOV
9
|
return new Item(11, "Plutonium Waste", |
× |
UNCOV
10
|
"PlutoniumWaste_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
|
{ "Plutonium Fuel Rod", 0.1M }, |
× |
UNCOV
20
|
{ "Water", 240 } |
× |
UNCOV
21
|
}, |
× |
UNCOV
22
|
new()
|
× |
UNCOV
23
|
{ |
× |
UNCOV
24
|
{ "Plutonium Waste", 1 } |
× |
UNCOV
25
|
}, |
× |
UNCOV
26
|
"Nuclear Power Plant")
|
× |
UNCOV
27
|
} |
× |
UNCOV
28
|
}; |
× |
UNCOV
29
|
} |
× |
30 |
|
|
31 |
|
|
32 |
|
|
33 |
} |
|
34 |
} |