public void TypedWirehomeDictionary_To_PythonDictionary() { var model = new TestModel(); var pythonDictionary = (PythonDictionary)model.ConvertToPython(); Assert.AreEqual(55, pythonDictionary["the_first_number"]); Assert.AreEqual(true, pythonDictionary["another_bool"]); Assert.AreEqual("Hello", pythonDictionary["a_string"]); }