aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/OpenSim/Framework/Servers/Tests/VersionInfoTests.cs
diff options
context:
space:
mode:
Diffstat (limited to 'OpenSim/Framework/Servers/Tests/VersionInfoTests.cs')
-rw-r--r--OpenSim/Framework/Servers/Tests/VersionInfoTests.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/OpenSim/Framework/Servers/Tests/VersionInfoTests.cs b/OpenSim/Framework/Servers/Tests/VersionInfoTests.cs
new file mode 100644
index 0000000..5eb362b
--- /dev/null
+++ b/OpenSim/Framework/Servers/Tests/VersionInfoTests.cs
@@ -0,0 +1,17 @@
1using System;
2using System.Collections.Generic;
3using System.Text;
4using NUnit.Framework;
5
6namespace OpenSim.Framework.Servers.Tests
7{
8 [TestFixture]
9 public class VersionInfoTests
10 {
11 [Test]
12 public void TestVersionInfoLength()
13 {
14 Assert.AreEqual( VersionInfo.VERSIONINFO_VERSION_LENGTH, VersionInfo.Version.Length," VersionInfo.Version string not " + VersionInfo.VERSIONINFO_VERSION_LENGTH + " chars." );
15 }
16 }
17}