hacks 360>280
PS3 model and system memory
Xbox 360
Xbox One
Nintendo 3DS
Wii U
Third-party software
Gamefly (Online gaming service)
PlayStation Network
using FluentAssertions;
using LanguageExt;
using System;
using System.Collections.Generic;
using System.IO;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xunit;
namespace LanguageExt
{
public class BitwiseOrTests
{
[Theory]
[ActiveIssue("", TestRuntimes.Mono)]
[MemberData(nameof(BitwiseOrTests_TestData))]
public void BitwiseOrTests(string testName, params string[] inputs)
{
var res = BitwiseOr(inputs);
res.Should().Be(BitwiseOr(inputs));
}
private static string[] BitwiseOrTests_TestData = new[]
"11111001111111001111111001111111111",
"1001011011110101011011010101101001",
"100
Related links:
Comments