Beispiel #1
0
        public string NextChunk([PexAssumeUnderTest] Chunker target)
        {
            // TODO: add assertions to method ChunkerTest.NextChunk(Chunker)
            string result = target.NextChunk();

            return(result);
        }
        public static void PexHelper(string s, int i)
        {
            Chunker c = new Chunker(s, i);

            string chunk;

            while ((chunk = c.NextChunk()) != "")
            {
                Console.WriteLine(chunk);
            }
        }
    public static void PexHelper(string s, int i)
    {
      Chunker c = new Chunker(s, i);

      string chunk;
      while ((chunk = c.NextChunk()) != "")
      {
        Console.WriteLine(chunk);
      }
    }