Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
… into develop
  • Loading branch information
KelsonDenton committed May 24, 2023
2 parents 976a69f + 4e114ab commit 76e4f7e
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions test/models/estimate_test.dart
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,6 @@ void main() {
});
});

// Fold-a-Tank Acres
group('defaultFoldaTankAcres', () {
test('0 when acres are less than 10', () {
Estimate estimate = Estimate(acres: 0);
Expand All @@ -227,7 +226,6 @@ void main() {
});
});

// Mark 3 Pumps Acres
group('defaultMark3PumpsAcres', () {
test('0 when acres are less than 10', () {
Estimate estimate = Estimate(acres: 0);
Expand All @@ -243,7 +241,6 @@ void main() {
});
});

// Mark 3 kits acres
group('calculateMark3KitsAcres', () {
test('0 when acres are less than 10', () {
Estimate estimate = Estimate(acres: 0);
Expand All @@ -259,7 +256,6 @@ void main() {
});
});

// Mark 3 Pump Mix Cans
group('defaultPumpMixCansAcres', () {
test('0 when acres are less than 10', () {
Estimate estimate = Estimate(acres: 0);
Expand All @@ -275,7 +271,6 @@ void main() {
});
});

// Water Pallets
group('defaultWaterPallets', () {
test('0 when acres are less than 20', () {
Estimate estimate = Estimate(acres: 0);
Expand All @@ -291,7 +286,6 @@ void main() {
});
});

// Gatorade Pallets
group('defaultGatoradePallets', () {
test('0 when acres are less than 20', () {
Estimate estimate = Estimate(acres: 0);
Expand All @@ -307,7 +301,6 @@ void main() {
});
});

// MRE Pallets
group('defaultMrePallets', () {
test('0 when acres are less than 20', () {
Estimate estimate = Estimate(acres: 0);
Expand All @@ -325,7 +318,6 @@ void main() {
});
});

// PortaPotties
group('defaultPortaPottiesAcres', () {
test('0 when acres are 0', () {
Estimate estimate = Estimate(acres: 0);
Expand All @@ -346,8 +338,6 @@ void main() {
});

// STRUCTURE TESTS BELOW
//Sprinklers

group('defaultSprinklerKits', () {
test('0 when there are no structures', () {
Estimate estimate = Estimate(acres: 0, structures: 0);
Expand Down Expand Up @@ -377,7 +367,6 @@ void main() {
});
});

// OnePointFive Inch Hose
group('defaultOnePointFiveInchHose', () {
test('0 when there are no structures', () {
Estimate estimate = Estimate(acres: 0, structures: 0);
Expand Down Expand Up @@ -405,7 +394,6 @@ void main() {
});
});

// One Inch Hose
group('defaultOneInchHose', () {
test('0 when there are no structures', () {
Estimate estimate = Estimate(acres: 0, structures: 0);
Expand All @@ -429,7 +417,6 @@ void main() {
});
});

// One Point Five Wye
group('defaultOnePointFiveWye', () {
test('0 when there are no structures', () {
Estimate estimate = Estimate(acres: 0, structures: 0);
Expand All @@ -453,7 +440,6 @@ void main() {
});
});

// One Inch Wye
group('defaultOneInchWye', () {
test('0 when there are no structures', () {
Estimate estimate = Estimate(acres: 0, structures: 0);
Expand All @@ -477,7 +463,6 @@ void main() {
});
});

// OnePointFiveToOneInchReducer
group('defaultOnePointFiveToOneInchReducer', () {
test('0 when there is no structure', () {
Estimate estimate = Estimate(acres: 0, structures: 0);
Expand Down Expand Up @@ -507,7 +492,6 @@ void main() {
});
});

// KK Nozzles
group('defaultKKNozzles', () {
test('0 When there are no structure', () {
Estimate estimate = Estimate(acres: 0, structures: 0);
Expand All @@ -530,7 +514,6 @@ void main() {
});
});

// Mark 3 Structures
group('defaultMark3Structures', () {
test('Default Mark3Structures - Structures: 0', () {
Estimate estimate = Estimate(acres: 0, structures: 0);
Expand All @@ -553,7 +536,6 @@ void main() {
});
});

// Unleaded Gas
group('defaultUnleadedGas', () {
test('Default Unleaded Gas - Structures: x < 10', () {
Estimate estimate = Estimate(acres: 0, structures: 5);
Expand All @@ -571,8 +553,6 @@ void main() {
});
});

// Two Cycle Oil

group('defaultTwoCycleOil', () {
test('0 when there are no structures', () {
Estimate estimate = Estimate(acres: 0, structures: 0);
Expand All @@ -596,7 +576,6 @@ void main() {
});
});

// Porta Potties Structure
group('defaultPortaPottiesStructures', () {
test('0 when there are no structures', () {
Estimate estimate = Estimate(acres: 0, structures: 0);
Expand Down

0 comments on commit 76e4f7e

Please sign in to comment.