public void TestAddMultipleSameContentItems() { Catalog catalog = new Catalog(); Content contentBook = new Content(ContentType.Book, new string[] { "Intro C#", "S.Nakov", "12763892", "http://www.introprogramming.info" }); Content contentBook2 = new Content(ContentType.Book, new string[] { "Intro C#", "S.Nakov", "12763892", "http://www.introprogramming.info" }); Content contentBook3 = new Content(ContentType.Movie, new string[] { "Leonardo ciffer", "Dan Brown", "23922539", "http://www.introprogramming.info" }); catalog.Add(contentBook); catalog.Add(contentBook3); catalog.Add(contentBook2); Assert.AreEqual(3, catalog.Count); //Count returns 2. I don't know why. // MultiDictionary Count Summary: // Gets the number of key-value pairs in the dictionary. Each value associated // with a given key is counted. If duplicate values are permitted, each duplicate // value is included in the count. }
public void TestAddSingleContentItem() { Catalog catalog = new Catalog(); Content content = new Content(ContentType.Book, new string[] {"Intro C#", "S.Nakov", "12763892", "http://www.introprogramming.info"}); catalog.Add(content); Assert.AreEqual(1, catalog.Count); }
public void TestAddMultipleDifferentContentItems() { Catalog catalog = new Catalog(); Content contentBook = new Content(ContentType.Book, new string[] { "Intro C#", "S.Nakov", "12763892", "http://www.introprogramming.info" }); Content contentMovie = new Content(ContentType.Movie, new string[] { "Fast and Furious", "American Movies", "92752320", "http://www.fastandfurious.com" }); catalog.Add(contentBook); catalog.Add(contentMovie); Assert.AreEqual(2, catalog.Count); }
public static void Main() { StringBuilder result = new StringBuilder(); Catalog catalog = new Catalog(); ICommandExecutor commandExecutor = new CommandExecutor(); List<ICommand> parsedCommands = ParseInputCommands(); foreach (ICommand command in parsedCommands) { commandExecutor.ExecuteCommand(catalog, command, result); } Console.Write(result); }
public void TestAddWithOneObjectAddedThreeTimes() { Catalog catalog = new Catalog(); Content contentBook = new Content(ContentType.Book, new string[] { "Intro C#", "S.Nakova", "12763892", "http://www.introprogramming.info" }); catalog.Add(contentBook); catalog.Add(contentBook); catalog.Add(contentBook); Assert.AreEqual(3, catalog.Count); //Count returns 1. I don't know why. // MultiDictionary Count Summary: // Gets the number of key-value pairs in the dictionary. Each value associated // with a given key is counted. If duplicate values are permitted, each duplicate // value is included in the count. }