Merge pull request #106 from mattleibow/fix-build

Fix the tests which are failing the build
This commit is contained in:
Matthew Leibowitz 2018-03-22 20:40:03 +02:00 коммит произвёл GitHub
Родитель d659f723c1 1f43e5f519
Коммит 31b6b399be
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
2 изменённых файлов: 0 добавлений и 35 удалений

Просмотреть файл

@ -16,7 +16,6 @@
<Compile Include="$(MSBuildThisFileDirectory)ScreenLock_Tests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Preferences_Tests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)FileSystem_Tests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Sms_Tests.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Traits.cs" />
<Compile Include="$(MSBuildThisFileDirectory)Utils.cs" />
</ItemGroup>

Просмотреть файл

@ -1,34 +0,0 @@
using System.Threading.Tasks;
using Microsoft.Caboodle;
using Xunit;
namespace Caboodle.DeviceTests
{
public class Sms_Tests
{
[Fact]
public Task Sms_ComposeAsync_Does_Not_Throw()
{
return Utils.OnMainThread(() =>
{
if (Utils.IsiOSSimulator)
return Assert.ThrowsAsync<FeatureNotSupportedException>(() => Sms.ComposeAsync());
else
return Sms.ComposeAsync();
});
}
[Fact]
public Task Sms_ComposeAsync_Does_Not_Throw_When_Empty()
{
var message = new SmsMessage();
return Utils.OnMainThread(() =>
{
if (Utils.IsiOSSimulator)
return Assert.ThrowsAsync<FeatureNotSupportedException>(() => Sms.ComposeAsync(message));
else
return Sms.ComposeAsync(message);
});
}
}
}