Compare commits
1 Commits
v0.5
...
test-tests
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
5bd78afe82 |
@@ -1,5 +1,5 @@
|
|||||||
{
|
{
|
||||||
"name": "EditModeTests",
|
"name": "AccountsTests",
|
||||||
"optionalUnityReferences": [
|
"optionalUnityReferences": [
|
||||||
"TestAssemblies"
|
"TestAssemblies"
|
||||||
],
|
],
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: b3d66002fb543bf3fa03c11006f8cb3a
|
guid: 8500f5aede7627729bd8c97b15e541c4
|
||||||
AssemblyDefinitionImporter:
|
AssemblyDefinitionImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
userData:
|
userData:
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: 74f8b297e568e071198f12d32c3f32c0
|
guid: 46a16de014fe6a35abc9039f24c34096
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
@@ -1,239 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Runtime.Serialization;
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test the Progress class
|
|
||||||
/// </summary>
|
|
||||||
public class TestProgress : MonoBehaviour
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// A dummy serializable struct to perform test operations on
|
|
||||||
/// </summary>
|
|
||||||
[Serializable]
|
|
||||||
private struct SerializableStruct
|
|
||||||
{
|
|
||||||
public int r, g, b;
|
|
||||||
public float x, y, z;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// A dummy non-serializable struct to perform test operations on
|
|
||||||
/// </summary>
|
|
||||||
private struct NonSerializableStruct
|
|
||||||
{
|
|
||||||
public int r, g, b;
|
|
||||||
public float x, y, z;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Helper method
|
|
||||||
/// </summary>
|
|
||||||
/// <returns><c>true</c> if <c>Progress.AddOrUpdate(...)</c> throws a <c>SerializationException</c></returns>
|
|
||||||
private bool AddNonSerializableStruct()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
NonSerializableStruct nss = new NonSerializableStruct();
|
|
||||||
try { progress.AddOrUpdate<NonSerializableStruct>("key", nss); }
|
|
||||||
catch (SerializationException) { return true; }
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Helper method
|
|
||||||
/// </summary>
|
|
||||||
/// <returns><c>true</c> if <c>Progress.Get(...)</c> throws a <c>KeyNotFoundException</c></returns>
|
|
||||||
private bool AccessInvalidKey()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
try { progress.Get<int>("non-existing key"); }
|
|
||||||
catch (KeyNotFoundException) { return true; }
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Helper method
|
|
||||||
/// </summary>
|
|
||||||
/// <returns><c>true</c> if <c>Progress.Get(...)</c> throws a <c>InvalidCastException</c></returns>
|
|
||||||
private bool AccessInvalidType()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
progress.AddOrUpdate<int>("key", 123456789);
|
|
||||||
try { progress.Get<double>("key"); }
|
|
||||||
catch (InvalidCastException) { return true; }
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Start is called before the first frame update
|
|
||||||
/// </summary>
|
|
||||||
void Start()
|
|
||||||
{
|
|
||||||
TestNewProgress();
|
|
||||||
TestProgressAddInvalidData();
|
|
||||||
TestProgressAddDuplicateKey();
|
|
||||||
TestProgressAddInt();
|
|
||||||
TestProgressAddDouble();
|
|
||||||
TestProgressAddString();
|
|
||||||
TestProgressAddSerializableStruct();
|
|
||||||
TestProgressAddNonSerializableStruct();
|
|
||||||
TestProgressGetInvalidKey();
|
|
||||||
TestProgressGetInvalidType();
|
|
||||||
TestProgressUpdate();
|
|
||||||
TestProgressGetInt();
|
|
||||||
TestProgressGetDouble();
|
|
||||||
TestProgressGetString();
|
|
||||||
TestProgressGetStruct();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test for creation of a new progress
|
|
||||||
/// </summary>
|
|
||||||
public void TestNewProgress()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
Debug.Assert(progress != null);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether invalid data will not be added
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressAddInvalidData()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
Debug.Assert(!progress.AddOrUpdate<GameObject>("key", null));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a duplicated key will be added
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressAddDuplicateKey()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
progress.AddOrUpdate<int>("key 1", 0);
|
|
||||||
Debug.Assert(progress.AddOrUpdate<int>("key 1", 1));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a <c>int</c> value can be added
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressAddInt()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
Debug.Assert(progress.AddOrUpdate<int>("key", 1));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a <c>double</c> value can be added
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressAddDouble()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
Debug.Assert(progress.AddOrUpdate<double>("key", 1.0));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a <c>string</c> value can be added
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressAddString()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
Debug.Assert(progress.AddOrUpdate<string>("key", "Hello World!"));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a serializable struct can be added
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressAddSerializableStruct()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
Debug.Assert(progress.AddOrUpdate<SerializableStruct>("key", new SerializableStruct()));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a non-serializable struct will throw an error
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressAddNonSerializableStruct()
|
|
||||||
{
|
|
||||||
Debug.Assert(AddNonSerializableStruct());
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether an invalid key will throw an error
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressGetInvalidKey()
|
|
||||||
{
|
|
||||||
Debug.Assert(AccessInvalidKey());
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether an invalid type will throw an error
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressGetInvalidType()
|
|
||||||
{
|
|
||||||
Debug.Assert(AccessInvalidType());
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a value is correctly updated
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressUpdate()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
progress.AddOrUpdate<int>("key", 1);
|
|
||||||
Debug.Assert(progress.Get<int>("key") == 1);
|
|
||||||
progress.AddOrUpdate<int>("key", 2);
|
|
||||||
Debug.Assert(progress.Get<int>("key") == 2);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a <c>int</c> value can be read
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressGetInt()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
progress.AddOrUpdate<int>("key", 1);
|
|
||||||
Debug.Assert(progress.Get<int>("key") == 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a <c>double</c> value can be read
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressGetDouble()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
progress.AddOrUpdate<double>("key", 1.0);
|
|
||||||
Debug.Assert(progress.Get<double>("key") == 1.0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a <c>string</c> value can be read
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressGetString()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
progress.AddOrUpdate<string>("key", "Hello World!");
|
|
||||||
Debug.Assert(progress.Get<string>("key") == "Hello World!");
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether a serializable struct can be read
|
|
||||||
/// </summary>
|
|
||||||
public void TestProgressGetStruct()
|
|
||||||
{
|
|
||||||
Progress progress = new Progress();
|
|
||||||
|
|
||||||
int R = 1, G = 10, B = 100;
|
|
||||||
float X = 0.1f, Y = 0.01f, Z = 0.001f;
|
|
||||||
SerializableStruct data = new SerializableStruct { r = R, g = G, b = B, x = X, y = Y, z = Z };
|
|
||||||
progress.AddOrUpdate<SerializableStruct>("key", data);
|
|
||||||
SerializableStruct result = progress.Get<SerializableStruct>("key");
|
|
||||||
Debug.Assert(result.r == R);
|
|
||||||
Debug.Assert(result.g == G);
|
|
||||||
Debug.Assert(result.b == B);
|
|
||||||
Debug.Assert(result.x == X);
|
|
||||||
Debug.Assert(result.y == Y);
|
|
||||||
Debug.Assert(result.z == Z);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 49445c42f43d1bb488f588623826a39e
|
|
||||||
MonoImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
defaultReferences: []
|
|
||||||
executionOrder: 0
|
|
||||||
icon: {instanceID: 0}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,168 +0,0 @@
|
|||||||
using System;
|
|
||||||
using System.Collections.Generic;
|
|
||||||
using UnityEngine;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test the User class
|
|
||||||
/// </summary>
|
|
||||||
public class TestUser : MonoBehaviour
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Start is called before the first frame update
|
|
||||||
/// </summary>
|
|
||||||
void Start()
|
|
||||||
{
|
|
||||||
TestNewUser();
|
|
||||||
TestUserAddCourse();
|
|
||||||
TestUserAddMinigame();
|
|
||||||
TestGetRecentCoursesEmpty();
|
|
||||||
TestGetRecentCoursesAll();
|
|
||||||
TestGetRecommendedCoursesEmpty();
|
|
||||||
TestGetRecommendedCoursesAll();
|
|
||||||
TestGetCourseProgressNull();
|
|
||||||
TestGetCourseProgressValid();
|
|
||||||
TestGetMinigameProgressNull();
|
|
||||||
TestGetMinigameProgressValid();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test for the creation of a new user
|
|
||||||
/// </summary>
|
|
||||||
public void TestNewUser()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
Debug.Assert(user != null);
|
|
||||||
Debug.Assert(user.courses.Count == 0);
|
|
||||||
Debug.Assert(user.minigames.Count == 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether progress on a new course can be added
|
|
||||||
/// </summary>
|
|
||||||
public void TestUserAddCourse()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
Progress p = new Progress();
|
|
||||||
user.courses.Add(p);
|
|
||||||
Debug.Assert(user.courses.Count == 1);
|
|
||||||
Debug.Assert(user.minigames.Count == 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test whether progress on a new minigame can be added
|
|
||||||
/// </summary>
|
|
||||||
public void TestUserAddMinigame()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
Progress p = new Progress();
|
|
||||||
user.minigames.Add(p);
|
|
||||||
Debug.Assert(user.courses.Count == 0);
|
|
||||||
Debug.Assert(user.minigames.Count == 1);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test GetRecentCourses will return empty when no progress is stored
|
|
||||||
/// </summary>
|
|
||||||
public void TestGetRecentCoursesEmpty()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
Debug.Assert(user.GetRecentCourses().Count == 0);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Temporary test for GetRecentCourses will return all progress that is stored
|
|
||||||
/// </summary>
|
|
||||||
public void TestGetRecentCoursesAll()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
Progress p = new Progress();
|
|
||||||
p.AddOrUpdate<CourseIndex>("courseIndex", CourseIndex.FINGERSPELLING);
|
|
||||||
p.AddOrUpdate<float>("courseProgress", 0.5f);
|
|
||||||
user.courses.Add(p);
|
|
||||||
List<Tuple<CourseIndex, float>> list = user.GetRecentCourses();
|
|
||||||
Debug.Assert(list.Count == 1);
|
|
||||||
Debug.Assert(list[0].Item1 == CourseIndex.FINGERSPELLING);
|
|
||||||
Debug.Assert(list[0].Item2 == 0.5f);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test GetRecommendedCourses will return <c>Tuple<CourseIndex.FINGERSPELLING, 0.0></c> when no progress is stored
|
|
||||||
/// </summary>
|
|
||||||
public void TestGetRecommendedCoursesEmpty()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
List<Tuple<CourseIndex, float>> list = user.GetRecommendedCourses();
|
|
||||||
Debug.Assert(list.Count == 1);
|
|
||||||
Debug.Assert(list[0].Item1 == CourseIndex.FINGERSPELLING);
|
|
||||||
Debug.Assert(list[0].Item2 == 0.0f);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Temporary test for GetRecommenedCourses will return all progress that is stored
|
|
||||||
/// </summary>
|
|
||||||
public void TestGetRecommendedCoursesAll()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
Progress p = new Progress();
|
|
||||||
p.AddOrUpdate<CourseIndex>("courseIndex", CourseIndex.FINGERSPELLING);
|
|
||||||
p.AddOrUpdate<float>("courseProgress", 0.5f);
|
|
||||||
user.courses.Add(p);
|
|
||||||
List<Tuple<CourseIndex, float>> list = user.GetRecommendedCourses();
|
|
||||||
Debug.Assert(list.Count == 1);
|
|
||||||
Debug.Assert(list[0].Item1 == CourseIndex.FINGERSPELLING);
|
|
||||||
Debug.Assert(list[0].Item2 == 0.5f);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test GetCourseProgress returns null when course cannot be found
|
|
||||||
/// </summary>
|
|
||||||
public void TestGetCourseProgressNull()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
Debug.Assert(user.GetCourseProgress(CourseIndex.FINGERSPELLING) == null);
|
|
||||||
Debug.Assert(user.GetCourseProgress((CourseIndex)100) == null);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test GetCourseProgress returns correct progress object
|
|
||||||
/// </summary>
|
|
||||||
public void TestGetCourseProgressValid()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
Progress p = new Progress();
|
|
||||||
p.AddOrUpdate<CourseIndex>("courseIndex", CourseIndex.FINGERSPELLING);
|
|
||||||
p.AddOrUpdate<float>("courseProgress", 3.14159265f);
|
|
||||||
user.courses.Add(p);
|
|
||||||
Progress q = user.GetCourseProgress(CourseIndex.FINGERSPELLING);
|
|
||||||
Debug.Assert(q.Get<CourseIndex>("courseIndex") == CourseIndex.FINGERSPELLING);
|
|
||||||
Debug.Assert(q.Get<float>("courseProgress") == 3.14159265f);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test GetMinigameProgress returns null when minigame cannot be found
|
|
||||||
/// </summary>
|
|
||||||
public void TestGetMinigameProgressNull()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
Debug.Assert(user.GetMinigameProgress(MinigameIndex.SPELLING_BEE) == null);
|
|
||||||
Debug.Assert(user.GetMinigameProgress((MinigameIndex)100) == null);
|
|
||||||
|
|
||||||
Progress p = new Progress();
|
|
||||||
p.AddOrUpdate<MinigameIndex>("minigameIndex", MinigameIndex.SPELLING_BEE);
|
|
||||||
user.minigames.Add(p);
|
|
||||||
Debug.Assert(user.GetMinigameProgress(MinigameIndex.HANGMAN) == null);
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test GetMinigameProgress returns correct progress object
|
|
||||||
/// </summary>
|
|
||||||
public void TestGetMinigameProgressValid()
|
|
||||||
{
|
|
||||||
User user = new User();
|
|
||||||
Progress p = new Progress();
|
|
||||||
p.AddOrUpdate<MinigameIndex>("minigameIndex", MinigameIndex.SPELLING_BEE);
|
|
||||||
user.minigames.Add(p);
|
|
||||||
Progress q = user.GetMinigameProgress(MinigameIndex.SPELLING_BEE);
|
|
||||||
Debug.Assert(q.Get<CourseIndex>("minigameIndex") == CourseIndex.FINGERSPELLING);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
@@ -1,11 +0,0 @@
|
|||||||
fileFormatVersion: 2
|
|
||||||
guid: 97bd2549f1c48d34db7cbccca17fc336
|
|
||||||
MonoImporter:
|
|
||||||
externalObjects: {}
|
|
||||||
serializedVersion: 2
|
|
||||||
defaultReferences: []
|
|
||||||
executionOrder: 0
|
|
||||||
icon: {instanceID: 0}
|
|
||||||
userData:
|
|
||||||
assetBundleName:
|
|
||||||
assetBundleVariant:
|
|
||||||
@@ -1,39 +0,0 @@
|
|||||||
using UnityEngine;
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Test the UserCreationScreen class
|
|
||||||
/// </summary>
|
|
||||||
public class TestUserCreationScreen : MonoBehaviour
|
|
||||||
{
|
|
||||||
/// <summary>
|
|
||||||
/// Start is called before the first frame update
|
|
||||||
/// </summary>
|
|
||||||
void Start()
|
|
||||||
{
|
|
||||||
TestIsValidUsernameTrue();
|
|
||||||
TestIsValidUsernameFalse();
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Tets IsValidUsername will return <c>true</c> for an valid username
|
|
||||||
/// </summary>
|
|
||||||
public void TestIsValidUsernameTrue()
|
|
||||||
{
|
|
||||||
foreach (char c in "abcdefghijklmnopqrstuvwxyz")
|
|
||||||
Debug.Assert(UserCreationScreen.IsValidUsername(c.ToString()));
|
|
||||||
|
|
||||||
Debug.Assert(UserCreationScreen.IsValidUsername("abcdefghijkl"));
|
|
||||||
}
|
|
||||||
|
|
||||||
/// <summary>
|
|
||||||
/// Tets IsValidUsername will return <c>false</c> for an invalid username
|
|
||||||
/// </summary>
|
|
||||||
public void TestIsValidUsernameFalse()
|
|
||||||
{
|
|
||||||
Debug.Assert(!UserCreationScreen.IsValidUsername(string.Empty));
|
|
||||||
foreach (char c in " \n\t0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZ+-*/%_(){}[]\\")
|
|
||||||
Debug.Assert(!UserCreationScreen.IsValidUsername(c.ToString()));
|
|
||||||
|
|
||||||
Debug.Assert(!UserCreationScreen.IsValidUsername("abcdefghijklmnopqrstuvwxyz"));
|
|
||||||
}
|
|
||||||
}
|
|
||||||
11
Assets/Common/Tests/BasicTest.cs
Normal file
11
Assets/Common/Tests/BasicTest.cs
Normal file
@@ -0,0 +1,11 @@
|
|||||||
|
using NUnit.Framework;
|
||||||
|
|
||||||
|
public class BasicTest
|
||||||
|
{
|
||||||
|
// check if edit mode tests works
|
||||||
|
[Test]
|
||||||
|
public void AlwaysTrueTest()
|
||||||
|
{
|
||||||
|
Assert.True(true);
|
||||||
|
}
|
||||||
|
}
|
||||||
@@ -1,5 +1,5 @@
|
|||||||
fileFormatVersion: 2
|
fileFormatVersion: 2
|
||||||
guid: b6dabaf99e10900459274641f4cc9010
|
guid: b4acb5e526382aaea882209bd2f0a075
|
||||||
MonoImporter:
|
MonoImporter:
|
||||||
externalObjects: {}
|
externalObjects: {}
|
||||||
serializedVersion: 2
|
serializedVersion: 2
|
||||||
9
Assets/Common/Tests/CommonTests.asmdef
Normal file
9
Assets/Common/Tests/CommonTests.asmdef
Normal file
@@ -0,0 +1,9 @@
|
|||||||
|
{
|
||||||
|
"name": "CommonTests",
|
||||||
|
"optionalUnityReferences": [
|
||||||
|
"TestAssemblies"
|
||||||
|
],
|
||||||
|
"includePlatforms": [
|
||||||
|
"Editor"
|
||||||
|
]
|
||||||
|
}
|
||||||
7
Assets/Common/Tests/CommonTests.asmdef.meta
Normal file
7
Assets/Common/Tests/CommonTests.asmdef.meta
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
fileFormatVersion: 2
|
||||||
|
guid: 51e9387d41ea4c92e959a2181b19e568
|
||||||
|
AssemblyDefinitionImporter:
|
||||||
|
externalObjects: {}
|
||||||
|
userData:
|
||||||
|
assetBundleName:
|
||||||
|
assetBundleVariant:
|
||||||
@@ -149,13 +149,16 @@ PlayerSettings:
|
|||||||
useHDRDisplay: 0
|
useHDRDisplay: 0
|
||||||
D3DHDRBitDepth: 0
|
D3DHDRBitDepth: 0
|
||||||
m_ColorGamuts: 00000000
|
m_ColorGamuts: 00000000
|
||||||
targetPixelDensity: 0
|
targetPixelDensity: 30
|
||||||
resolutionScalingMode: 0
|
resolutionScalingMode: 0
|
||||||
resetResolutionOnWindowResize: 0
|
resetResolutionOnWindowResize: 0
|
||||||
androidSupportedAspectRatio: 1
|
androidSupportedAspectRatio: 1
|
||||||
androidMaxAspectRatio: 2.1
|
androidMaxAspectRatio: 2.1
|
||||||
applicationIdentifier: {}
|
applicationIdentifier: {}
|
||||||
buildNumber: {}
|
buildNumber:
|
||||||
|
Standalone: 0
|
||||||
|
iPhone: 0
|
||||||
|
tvOS: 0
|
||||||
overrideDefaultApplicationIdentifier: 0
|
overrideDefaultApplicationIdentifier: 0
|
||||||
AndroidBundleVersionCode: 1
|
AndroidBundleVersionCode: 1
|
||||||
AndroidMinSdkVersion: 22
|
AndroidMinSdkVersion: 22
|
||||||
@@ -173,10 +176,10 @@ PlayerSettings:
|
|||||||
StripUnusedMeshComponents: 0
|
StripUnusedMeshComponents: 0
|
||||||
VertexChannelCompressionMask: 4054
|
VertexChannelCompressionMask: 4054
|
||||||
iPhoneSdkVersion: 988
|
iPhoneSdkVersion: 988
|
||||||
iOSTargetOSVersionString:
|
iOSTargetOSVersionString: 11.0
|
||||||
tvOSSdkVersion: 0
|
tvOSSdkVersion: 0
|
||||||
tvOSRequireExtendedGameController: 0
|
tvOSRequireExtendedGameController: 0
|
||||||
tvOSTargetOSVersionString:
|
tvOSTargetOSVersionString: 11.0
|
||||||
uIPrerenderedIcon: 0
|
uIPrerenderedIcon: 0
|
||||||
uIRequiresPersistentWiFi: 0
|
uIRequiresPersistentWiFi: 0
|
||||||
uIRequiresFullScreen: 1
|
uIRequiresFullScreen: 1
|
||||||
|
|||||||
Reference in New Issue
Block a user