We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0ab29e7 commit 8ee9d3dCopy full SHA for 8ee9d3d
1 file changed
ground_control_client/lib/src/test_tools/builders/plan_info_builder.dart
@@ -142,6 +142,26 @@ class PlanInfoBuilder {
142
return this;
143
}
144
145
+ PlanInfoBuilder withGrowthPlan() {
146
+ _productId = 'growth:0';
147
+ _displayName = 'Growth';
148
+ _description = 'A test plan description';
149
+ _trialLength = 30;
150
+ _trialEndDate = null;
151
+ _projectsLimit = 3;
152
+ return this;
153
+ }
154
+
155
+ PlanInfoBuilder withStarterPlan() {
156
+ _productId = 'starter:0';
157
+ _displayName = 'Starter';
158
159
160
161
162
163
164
165
PlanInfoBuilder withStandardPlan() {
166
_productId = 'standard:0';
167
_displayName = 'Standard';
0 commit comments