Skip to content

Commit

Permalink
Update test_gpt4.py
Browse files Browse the repository at this point in the history
  • Loading branch information
anupammaurya6767 committed Feb 29, 2024
1 parent b29ce1d commit 7d61eca
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test_gpt4.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,15 @@ def test_login(self):
def test_ask_question(self):
question = 'Test question'
self.ap.login()
self.ap.ask_question(question,10)
self.ap.ask_question(question,20)
response = self.ap.get_response()
pass

def test_design(self):
question = 'A cow'
self.ap.login()
self.ap.design(question)
pass

def tearDown(self):
self.ap.close()
Expand Down

0 comments on commit 7d61eca

Please sign in to comment.