1
0
mirror of https://github.com/chylex/TweetDuck.git synced 2025-04-22 18:15:47 +02:00

Fix ISerializedObject not being removed from unit tests and csproj file

This commit is contained in:
chylex 2017-07-30 21:28:26 +02:00
parent f177f514f5
commit e21f89477b
2 changed files with 1 additions and 6 deletions

View File

@ -207,7 +207,6 @@
<Compile Include="Core\Notification\Screenshot\TweetScreenshotManager.cs" />
<Compile Include="Data\Serialization\FileSerializer.cs" />
<Compile Include="Data\InjectedHTML.cs" />
<Compile Include="Data\Serialization\ISerializedObject.cs" />
<Compile Include="Data\Serialization\ITypeConverter.cs" />
<Compile Include="Data\Serialization\SingleTypeConverter.cs" />
<Compile Include="Data\TwoKeyDictionary.cs" />

View File

@ -10,16 +10,12 @@ private enum TestEnum{
A, B, C, D, E
}
private class SerializationTestBasic : ISerializedObject{
private class SerializationTestBasic{
public bool TestBool { get; set; }
public int TestInt { get; set; }
public string TestString { get; set; }
public string TestStringNull { get; set; }
public TestEnum TestEnum { get; set; }
bool ISerializedObject.OnReadUnknownProperty(string property, string value){
return false;
}
}
[TestMethod]