Welcome to mirror list, hosted at ThFree Co, Russian Federation.

SilverlightTests.cs « Newtonsoft.Json.Tests « Src - github.com/mono/Newtonsoft.Json.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e037eed543f89360047d8f58728d4dc3bb948f4d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
using System;
using System.Reflection;
using NUnit.Framework;

namespace Newtonsoft.Json.Tests
{
  // todo: need to fix this to get WP unit tests running off right dlls
#if SILVERLIGHT
  [TestFixture]
  public class SilverlightTests
  {
    [Test]
    public void SystemVersion()
    {
      Assembly systemAssembly = typeof(Uri).Assembly;
      StringAssert.Contains("=4.0.0.0,", systemAssembly.FullName,
          "Check we're testing a Silverlight 4.0 assembly");
    }
  }
#endif
}