diff --git a/helpmehelpapplication/src/test/java/ntnu/systemutvikling/team6/models/DonationTest.java b/helpmehelpapplication/src/test/java/ntnu/systemutvikling/team6/models/DonationTest.java index 9f4121d..d0694b4 100644 --- a/helpmehelpapplication/src/test/java/ntnu/systemutvikling/team6/models/DonationTest.java +++ b/helpmehelpapplication/src/test/java/ntnu/systemutvikling/team6/models/DonationTest.java @@ -18,12 +18,13 @@ class DonationTest { // -- Setup -- @BeforeEach public void setup() { - charity = new Charity("1212", "Charity1", "Something Somewhere Somehow", "Cancer", false, "unverified"); - + charity = + new Charity( + "1212", "Charity1", "Something Somewhere Somehow", "Cancer", false, "unverified"); + user = new User("Name", "Valid@gmail.com", "123", Role.NORMAL_USER, new Settings(), new Inbox()); - - } + } // --- Tests --- @Test