Skip to content

TESTed: Oefeningen opstellen in C# #5793

Discussion options

You must be logged in to vote

De klasse waarin de oplossing komt wordt bepaald door de "namespace" in het testplan.
In dit geval is er geen, dus wordt de standaardwaarde gebruikt, namelijk Submission.

Je moet dus ofwel de oplossing aanpassen als volgt:

using System;

public class Submission
{
    public static void Main(string[] args)
    {
       string userName = Console.ReadLine();
        System.Console.WriteLine("Hello, " + userName + "!");
    }
}

Of je moet het testplan aanpassen als volgt:

namespace: Program
tabs:
- tab: "Testen"
  testcases:
    - stdin: "Jan"
      stdout: "Hallo, Jan!"
    - stdin: "Piet"
      stdout: "Hallo, Piet!"
    - stdin: "5236-hallo!"
      stdout: "Hallo, 5236-hallo!!"
    - stdin: "

Replies: 1 comment

Comment options

bmesuere
Sep 14, 2024
Maintainer Author

You must be logged in to vote
0 replies
Answer selected by bmesuere
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
1 participant