mirror of
https://github.com/raylib-cs/raylib-cs
synced 2025-04-03 11:09:40 -04:00
Updated Raylib-cs.Tests.
- Added binding tests for raylib. - Updated Raylib-cs.Tests.csproj.
This commit is contained in:
parent
d3babfd891
commit
34d069c7cc
@ -2,43 +2,28 @@
|
||||
// Original code derived from: https://github.com/AndreyAkinshin/BlittableStructs/blob/master/BlittableStructs/BlittableHelper.cs
|
||||
|
||||
/*
|
||||
MIT License
|
||||
Copyright (c) 2015 Andrey Akinshin
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
*/
|
||||
The MIT License
|
||||
|
||||
/*
|
||||
MIT License
|
||||
Copyright (c) 2020 Lucas Girouard-Stranks
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
Copyright (c) 2015 Andrey Akinshin
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining
|
||||
a copy of this software and associated documentation files (the
|
||||
"Software"), to deal in the Software without restriction, including
|
||||
without limitation the rights to use, copy, modify, merge, publish,
|
||||
distribute, sublicense, and/or sell copies of the Software, and to
|
||||
permit persons to whom the Software is furnished to do so, subject to
|
||||
the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be
|
||||
included in all copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
||||
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
||||
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
|
||||
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
|
||||
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
|
||||
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
*/
|
||||
|
||||
using System;
|
||||
|
41
Raylib-cs.Tests/RaylibTests.cs
Normal file
41
Raylib-cs.Tests/RaylibTests.cs
Normal file
@ -0,0 +1,41 @@
|
||||
using System;
|
||||
using Xunit;
|
||||
|
||||
namespace Raylib_cs.Tests
|
||||
{
|
||||
public class RaylibTests
|
||||
{
|
||||
// Test if binding structs are blittable.
|
||||
[Fact]
|
||||
public void IsBlittable()
|
||||
{
|
||||
Assert.True(BlittableHelper.IsBlittable<Color>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Rectangle>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Image>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Texture2D>());
|
||||
// Assert.True(BlittableHelper.IsBlittable<RenderTexture2D>());
|
||||
Assert.True(BlittableHelper.IsBlittable<NPatchInfo>());
|
||||
Assert.True(BlittableHelper.IsBlittable<CharInfo>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Font>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Camera3D>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Camera2D>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Mesh>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Shader>());
|
||||
Assert.True(BlittableHelper.IsBlittable<MaterialMap>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Material>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Transform>());
|
||||
// Assert.True(BlittableHelper.IsBlittable<BoneInfo>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Model>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Model>());
|
||||
Assert.True(BlittableHelper.IsBlittable<ModelAnimation>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Ray>());
|
||||
// Assert.True(BlittableHelper.IsBlittable<RayHitInfo>());
|
||||
Assert.True(BlittableHelper.IsBlittable<BoundingBox>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Wave>());
|
||||
Assert.True(BlittableHelper.IsBlittable<AudioStream>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Sound>());
|
||||
Assert.True(BlittableHelper.IsBlittable<Music>());
|
||||
// Assert.True(BlittableHelper.IsBlittable<VrDeviceInfo>());
|
||||
}
|
||||
}
|
||||
}
|
@ -1,8 +1,8 @@
|
||||
<Project Sdk="Microsoft.NET.Sdk">
|
||||
<PropertyGroup>
|
||||
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||
<Platforms>osx-x64;linux-x64;win-x64;win-x86;linux-x86</Platforms>
|
||||
<Configurations>Debug;Release</Configurations>
|
||||
<TargetFrameworks>netstandard2.0;netstandard2.1</TargetFrameworks>
|
||||
</PropertyGroup>
|
||||
|
||||
<PropertyGroup>
|
||||
|
Loading…
x
Reference in New Issue
Block a user