Advertisement
VIISeptem

Untitled

Mar 12th, 2020
124
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.47 KB | None | 0 0
  1. public class Utils
  2. {
  3.     public static void test(Object gewuenscht, Object ergebnis){
  4.         if(gewuenscht.equals(ergebnis) ){
  5.             System.out.println(".");
  6.         }else{
  7.             System.out.println("FEHLER");
  8.             System.out.println("ERWARTET"+ gewuenscht);
  9.             System.out.println(", erhaltem:"+ ergebnis);
  10.         }
  11.     }
  12.  
  13.     public static boolean testPunkt( String text){
  14.    
  15.             return text.equals(".");
  16.        
  17.     }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement