Coverage Summary for Class: StatusCode (it.polimi.ingsw.Server.Messages.ServerResponses.SupportStructures)
| Class | Class, % | Method, % | Line, % |
|---|---|---|---|
| StatusCode | 0% (0/1) | 0% (0/2) | 0% (0/3) |
1 package it.polimi.ingsw.Server.Messages.ServerResponses.SupportStructures; 2 3 import java.io.Serial; 4 import java.io.Serializable; 5 6 /** 7 * StatusCode represents the a status. 8 * A status can be: 9 * {@link #Success}<br> 10 * {@link #Fail} 11 */ 12 public enum StatusCode implements Serializable { 13 /** 14 * Status: positive outcome 15 */ 16 Success, 17 /** 18 * Status: negative outcome 19 */ 20 Fail; 21 @Serial 22 private static final long serialVersionUID = 313L; 23 }