Coverage Summary for Class: Welcome (it.polimi.ingsw.Server.Messages.ServerResponses)

Class Class, % Method, % Line, %
Welcome 0% (0/1) 0% (0/1) 0% (0/1)


1 package it.polimi.ingsw.Server.Messages.ServerResponses; 2  3 import java.io.Serial; 4  5 /** 6  * A {@link Response} to represent the start of a connection with a {@link it.polimi.ingsw.Server.WelcomeServer}. 7  * {@link #getStatusCode()} will always return positively 8  */ 9 public class Welcome extends FixedStatusResponse { 10  @Serial 11  private static final long serialVersionUID = 302L; 12  13  /** 14  * Construct the response 15  */ 16  public Welcome() { 17  super(); 18  } 19  20 }