Skip to content

Commit

Permalink
E2E MS2
Browse files Browse the repository at this point in the history
  • Loading branch information
AnonymousGym committed Dec 6, 2023
1 parent 27d6530 commit 857354a
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions app/src/test/java/cse/project/team/AppTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -256,6 +256,11 @@ public void testEndToEnd2() throws Exception{
REChandler.doPost("Xmas Ham", "Preheat oven to 350 degrees...",
"yiming105", "Dinner");

shareHandler share = givenSharedRecipe();
share.doPost(title1 + "\n" + description1);
assertNotEquals("Not found", share.doGet(title1));
share.doDelete(title1);
assertEquals("Not found", share.doGet(title1));
/*
RecipeList recList = new RecipeList();
Expand Down

0 comments on commit 857354a

Please sign in to comment.