无法在MAC上的Xamarin中构建基本的nUnit项目。 代码如下:
using NUnit.Framework;
using System;
namespace DocConnectionAutomation
{
[TestFixture ()]
public class Test
{
[Test]
public static void TestTrue()
{
Assert.True(true);
}
}
导致以下错误
xbuild DocConnectionAutomation.sln /p:Configuration=Release
Test.cs(13,247): error CS1525: Unexpected symbol `end-of-file'
0 Warning(s)
1 Error(s)
感谢帮助