Skip to content
Snippets Groups Projects
Commit 478c6893 authored by Luquor's avatar Luquor
Browse files

Ajout de méthodes pour valider les tests

parent c6ef5a11
No related branches found
No related tags found
No related merge requests found
...@@ -164,8 +164,27 @@ public class UserInterface ...@@ -164,8 +164,27 @@ public class UserInterface
showingAuthor = !showingAuthor; showingAuthor = !showingAuthor;
} }
/**
* @return si la fenetre est visible ou non
*/
public boolean isVisible() public boolean isVisible()
{ {
return frame.isVisible(); return frame.isVisible();
} }
/**
* @return display
*/
public JTextField getDisplay()
{
return display;
}
/**
* @return status
*/
public JLabel getStatus()
{
return status;
}
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment