File tree Expand file tree Collapse file tree 1 file changed +16
-0
lines changed
src/test/java/com/siftscience Expand file tree Collapse file tree 1 file changed +16
-0
lines changed Original file line number Diff line number Diff line change @@ -45,6 +45,14 @@ static Address sampleAddress2() {
4545 .setZipCode ("03257" );
4646 }
4747
48+ static Address sampleAddress3 () {
49+ return new Address ()
50+ .setCity ("Seattle" )
51+ .setRegion ("Washington" )
52+ .setCountry ("US" )
53+ .setZipCode ("98112" );
54+ }
55+
4856 static PaymentMethod samplePaymentMethod1 () {
4957 return new PaymentMethod ()
5058 .setPaymentType ("$credit_card" )
@@ -60,6 +68,7 @@ static PaymentMethod samplePaymentMethod2() {
6068 .setCardLast4 ("4444" );
6169 }
6270
71+
6372 static PaymentMethod samplePaymentMethodAch () {
6473 return new PaymentMethod ()
6574 .setPaymentType ("$ach_credit" )
@@ -261,4 +270,11 @@ static Promotion samplePromotion3() {
261270 .setDiscount (sampleDiscount2 ());
262271 }
263272
273+ static List <String > sampleCategories () {
274+ List <String > categories = new ArrayList <>();
275+ categories .add ("Housing" );
276+ categories .add ("Apartments" );
277+ categories .add ("2 Bedrooms" );
278+ return categories ;
279+ }
264280}
You can’t perform that action at this time.
0 commit comments