text stringlengths 40 299k | repo_name stringlengths 7 71 | path stringlengths 4 235 | source_url stringlengths 45 289 | commit_or_blob_id stringlengths 25 25 | license stringclasses 7
values | source_dataset stringclasses 1
value | content_sha256 stringlengths 64 64 | quality_score float64 0.2 0.95 | category_slice stringclasses 1
value | token_count int64 11 109k | is_synthetic bool 1
class | collected_at stringdate 2026-07-17 00:00:00 2026-07-17 00:00:00 |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
using System;
using System.ComponentModel.DataAnnotations;
using NUnit.Framework;
namespace MeetMe.Data.Models.Tests.NotificationTests
{
[TestFixture]
public class Content_Should
{
[TestCase("Content")]
[TestCase("Some")]
public void SetContent_Correct(string content)
{
... | Warez-VD/MeetMe | MeetMe/MeetMe.Data.Models.Tests/NotificationTests/Content_Should.cs | https://github.com/Warez-VD/MeetMe/blob/HEAD/MeetMe/MeetMe.Data.Models.Tests/NotificationTests/Content_Should.cs | ghcode:00164:a842d2ad2b5e | mit | codeparrot/github-code | a842d2ad2b5e90933c9db0222651c1d591ac887c8c8bbadfa525676018d6f573 | 0.7 | testing_debugging_repair_refactoring | 164 | false | 2026-07-17 |
// ----------------------
// xTask Framework
// ----------------------
// Copyright (c) Jeremy W. Kuhne. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
namespace XTask.Tests.FileSystem
{
using FluentAssertions;
using System;
u... | JeremyKuhne/XTask | src/Tests/FileSystem/PathsTests.cs | https://github.com/JeremyKuhne/XTask/blob/HEAD/src/Tests/FileSystem/PathsTests.cs | ghcode:00164:2ae1e8e81c01 | mit | codeparrot/github-code | 2ae1e8e81c016e63ebff1d5b74a20a20d9c317ca94e414ee6cb95779d32db1af | 0.95 | testing_debugging_repair_refactoring | 3,980 | false | 2026-07-17 |
using System;
using System.Linq;
using System.Threading;
using System.Threading.Tasks;
using Manager.Integration.Test.Database;
using Manager.Integration.Test.Helpers;
using Manager.Integration.Test.Initializers;
using Manager.Integration.Test.Timers;
using NUnit.Framework;
namespace Manager.Integration.Test.Tests.Re... | Teleopti/Stardust | Manager.Integration/Manager.Integration.Test/Tests/RecoveryTests/SendJobToDeadNodeTest.cs | https://github.com/Teleopti/Stardust/blob/HEAD/Manager.Integration/Manager.Integration.Test/Tests/RecoveryTests/SendJobToDeadNodeTest.cs | ghcode:00164:39939442409f | mit | codeparrot/github-code | 39939442409f9d154fb1884ad40891f2f7fa0075ecd79de9e80192d7255b3a99 | 0.85 | testing_debugging_repair_refactoring | 1,424 | false | 2026-07-17 |
using System;
using NUnit.Framework;
namespace SimpleSpec.NUnit
{
public class specification
{
public specification()
{
InSetupPhase = true;
InnerSpec = ResolveSpecificationFlavor();
SetupScenarioOnlyOnce = InnerSpec is ScenarioSpecification;
}
public Exception Failure { get; private set; }
... | samoshkin/SimpleSpec | SimpleSpec/specification.cs | https://github.com/samoshkin/SimpleSpec/blob/HEAD/SimpleSpec/specification.cs | ghcode:00164:29255f1671de | mit | codeparrot/github-code | 29255f1671de5aaf89a430dd8f6ae435eabc3767e2beeb01a930059faae0002d | 0.6 | testing_debugging_repair_refactoring | 781 | false | 2026-07-17 |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Azure.WebJobs.Host.Loggers;
using Microsoft.Azure.WebJobs.Host.Storage.Blob;
using ... | shrishrirang/azure-webjobs-sdk | test/Microsoft.Azure.WebJobs.Host.UnitTests/Loggers/UpdateOutputLogCommandTests.cs | https://github.com/shrishrirang/azure-webjobs-sdk/blob/HEAD/test/Microsoft.Azure.WebJobs.Host.UnitTests/Loggers/UpdateOutputLogCommandTests.cs | ghcode:00164:fc8a7ab8c342 | mit | codeparrot/github-code | fc8a7ab8c342e6f605f7a7ca9f705b8ce4912d2848484c8691f72f0468c74799 | 0.85 | testing_debugging_repair_refactoring | 466 | false | 2026-07-17 |
using System;
using System.Collections.Generic;
using System.Reflection;
using System.Reflection.Emit;
using Xunit;
namespace AttributeBuilder.Tests
{
public class BuilderExtensionsTests
{
#region Data properties for theories
/// <summary>
/// Provides configuration for s... | michielvoo/Attribute-Builder | Source/AttributeBuilder.Tests/BuilderExtensionsTests.cs | https://github.com/michielvoo/Attribute-Builder/blob/HEAD/Source/AttributeBuilder.Tests/BuilderExtensionsTests.cs | ghcode:00164:a6eb9787a30a | mit | codeparrot/github-code | a6eb9787a30a495f09805a762e46eaac5d34283f67cb916fe4a7da6b53ff622f | 0.85 | testing_debugging_repair_refactoring | 2,113 | false | 2026-07-17 |
namespace SafeOrbit.Tests
{
public abstract class StubProviderBase<TComponent> : IStubProvider<TComponent>
{
public abstract TComponent Provide();
object IStubProvider.Provide() => Provide();
}
} | undergroundwires/SafeOrbit | src/tests/Common/Stub/StubProviderBase.cs | https://github.com/undergroundwires/SafeOrbit/blob/HEAD/src/tests/Common/Stub/StubProviderBase.cs | ghcode:00164:ee05764c8924 | mit | codeparrot/github-code | ee05764c8924ba767701c823549773c80107a0759b12b13086ecddc9d8045980 | 0.85 | testing_debugging_repair_refactoring | 47 | false | 2026-07-17 |
using System;
using System.Collections.Generic;
using NUnit.Framework;
using Should;
using Swank.Extensions;
namespace Tests.Unit.Extensions
{
[TestFixture]
public class FuncTests
{
[Test]
public void Should_return_memoized_result()
{
var memoizedFunction ... | mikeobrien/swank | src/Tests/Unit/Extensions/FuncTests.cs | https://github.com/mikeobrien/swank/blob/HEAD/src/Tests/Unit/Extensions/FuncTests.cs | ghcode:00164:f2d6d0d17043 | mit | codeparrot/github-code | f2d6d0d17043910604da4d13e01344bac71008073cf2c7333ada17c54c07b410 | 0.85 | testing_debugging_repair_refactoring | 454 | false | 2026-07-17 |
using System;
using DailyEnterprise.Core.Helpers.Console;
using DailyEnterprise.Core.Models;
using DailyEnterprise.Core.Models.GameActions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Moq;
namespace DailyEnterprise.Core.Tests.ActionTests
{
[TestClass]
public class EndGameActionTests
{
... | ZEJustin/DailyEnterpriseProgrammer | Solutions/Challenges 1 to 100/Challenge 2/Intermediate/DailyEnterprise.Core.Tests/ActionTests/EndGameActionTests.cs | https://github.com/ZEJustin/DailyEnterpriseProgrammer/blob/HEAD/Solutions/Challenges 1 to 100/Challenge 2/Intermediate/DailyEnterprise.Core.Tests/ActionTests/EndGameActionTests.cs | ghcode:00164:b9f90be884f6 | mit | codeparrot/github-code | b9f90be884f687fa5246e3f75e99df40617924362513042b8a547c47d3b1347e | 0.75 | testing_debugging_repair_refactoring | 229 | false | 2026-07-17 |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System;
using Internal.TypeSystem;
using Debug = System.Diagnostics.Debug;
namespace Internal.IL.Stubs
{
... | kyulee1/corert | src/Common/src/TypeSystem/IL/Stubs/UnsafeIntrinsics.cs | https://github.com/kyulee1/corert/blob/HEAD/src/Common/src/TypeSystem/IL/Stubs/UnsafeIntrinsics.cs | ghcode:00164:bed8bb7bf6a9 | mit | codeparrot/github-code | bed8bb7bf6a953c64b68b2dd8280a0e9d19acad0c9798fedffd2bc1b99154386 | 0.95 | testing_debugging_repair_refactoring | 387 | false | 2026-07-17 |
using System.Threading.Tasks;
using NetFusion.Bootstrap.Health;
using NetFusion.Bootstrap.Plugins;
namespace CoreTests.Health.Mocks
{
public class HealthCheckModuleTwo : PluginModule,
IModuleHealthCheck
{
public HealthCheckStatusType HealthCheckStatus { get; set; } = HealthCheckStatusType.Healt... | grecosoft/NetFusion | netfusion/test/CoreTests/Health/Mocks/HealthCheckModuleTwo.cs | https://github.com/grecosoft/NetFusion/blob/HEAD/netfusion/test/CoreTests/Health/Mocks/HealthCheckModuleTwo.cs | ghcode:00164:11452407e372 | mit | codeparrot/github-code | 11452407e3723c11d467db6250f67297a4f2f9abcf75fc7393852aeaf91a4af1 | 0.85 | testing_debugging_repair_refactoring | 124 | false | 2026-07-17 |
using NUnit.Framework;
namespace Tourist.Tests.DataAccessor
{
class NUnitTests
{
[Test]
public void SightReadEmptyTable()
{
AbstractConnection abstractConnection = ConnectionFactory.CreateConnection();
abstractConnection.Open();
TouristDataSet ds = n... | betanets/tourist | Tourist/Tests/DataAccessor/SightDataAccessorTests.cs | https://github.com/betanets/tourist/blob/HEAD/Tourist/Tests/DataAccessor/SightDataAccessorTests.cs | ghcode:00164:72de73a2b2bf | mit | codeparrot/github-code | 72de73a2b2bfea55f9cb2d94c71a8da842435f869a01bf6a8a70c56f0a4f961b | 0.95 | testing_debugging_repair_refactoring | 1,479 | false | 2026-07-17 |
using System.Linq;
using Marten.Services;
using Marten.Testing.Documents;
using Marten.Testing.Harness;
using Shouldly;
using Weasel.Postgresql;
using Xunit;
namespace Marten.Testing.Linq
{
public class query_for_sum_Tests: IntegrationContext
{
#region sample_using_sum
[Fact]
public voi... | JasperFx/Marten | src/Marten.Testing/Linq/query_for_sum_Tests.cs | https://github.com/JasperFx/Marten/blob/HEAD/src/Marten.Testing/Linq/query_for_sum_Tests.cs | ghcode:00164:b73d4981bed6 | mit | codeparrot/github-code | b73d4981bed67eb7d4efd9c6ffdc942a18bdb66f277293523e459da16c94c9fa | 0.75 | testing_debugging_repair_refactoring | 633 | false | 2026-07-17 |
using System.Linq;
using NPoco.StoredProcedures.Tests.Unit.Stubs;
using NUnit.Framework;
using Should;
namespace NPoco.StoredProcedures.Tests.Unit
{
public class QueryStoredProcedure
{
[TestFixture]
public class when_testing_with_no_parameters
{
[Test]
public vo... | Workshop2/AsyncPoco.StoredProcedures | NPoco.StoredProcedures.Tests.Unit/QueryStoredProcedure.cs | https://github.com/Workshop2/AsyncPoco.StoredProcedures/blob/HEAD/NPoco.StoredProcedures.Tests.Unit/QueryStoredProcedure.cs | ghcode:00164:f9c66a71400d | mit | codeparrot/github-code | f9c66a71400d44dd1b690d731672dde9590c25d50bbed8ff72fc6b5620981bd4 | 0.85 | testing_debugging_repair_refactoring | 571 | false | 2026-07-17 |
/* MIT License
* Copyright (c) 2016 Sun Bo
* 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, pu... | LuckyStarry/Starry.Data | Starry.Data.Tests/DbClient.Test.cs | https://github.com/LuckyStarry/Starry.Data/blob/HEAD/Starry.Data.Tests/DbClient.Test.cs | ghcode:00164:a097aa578ddb | mit | codeparrot/github-code | a097aa578ddb19a2d5317650689c800f167c0f14a837db2b5f40b579463480a4 | 0.75 | testing_debugging_repair_refactoring | 1,660 | false | 2026-07-17 |
//C:\Users\t-kevimi\\Documents\\LuaTests\Lua Files for Testing\ComplexTableConstructor.lua
using LanguageModel.Tests.TestGeneration;
using LanguageService;
using Xunit;
namespace LanguageModel.Tests.GeneratedTestFiles
{
class Generated_5
{
[Fact]
public void Test(Tester t)
{
... | xiangyan99/VSLua | src/LanguageModel.Tests/TestGeneration/UnvalidatedGeneratedTests/5_Generated.cs | https://github.com/xiangyan99/VSLua/blob/HEAD/src/LanguageModel.Tests/TestGeneration/UnvalidatedGeneratedTests/5_Generated.cs | ghcode:00164:9ac164f61b47 | mit | codeparrot/github-code | 9ac164f61b47eed96e09025bb1cd481e2c7c63b4f4c0332f96ad96e16d53f40f | 0.75 | testing_debugging_repair_refactoring | 799 | false | 2026-07-17 |
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Linq;
using System.Text.RegularExpressions;
namespace ClosedXML.Excel.CalcEngine
{
internal class CalcEngineHelpers
{
private static Lazy<Dictionary<string, Tuple<string, string>>> patternReplacements =
n... | b0bi79/ClosedXML | ClosedXML/Excel/CalcEngine/CalcEngineHelpers.cs | https://github.com/b0bi79/ClosedXML/blob/HEAD/ClosedXML/Excel/CalcEngine/CalcEngineHelpers.cs | ghcode:00164:1602e8cae962 | mit | codeparrot/github-code | 1602e8cae962169fd79a9401fd146259db46d56ead993d5c09bdcf1d3b1a62c3 | 0.85 | testing_debugging_repair_refactoring | 972 | false | 2026-07-17 |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); you may... | joshball/Lucene.In.Action.NET | vendor/lucene.net/test/core/Search/TestElevationComparator.cs | https://github.com/joshball/Lucene.In.Action.NET/blob/HEAD/vendor/lucene.net/test/core/Search/TestElevationComparator.cs | ghcode:00164:855797719471 | mit | codeparrot/github-code | 855797719471f817fdf4d294cc3047fd82e19bddf7c2e64bc4ad9a021afa0ec4 | 0.95 | testing_debugging_repair_refactoring | 1,773 | false | 2026-07-17 |
using DotNetRevolution.Core.Domain;
using DotNetRevolution.Test.EventStoreDomain.Account.DomainEvent;
using System.Diagnostics.Contracts;
using DotNetRevolution.Core.Commanding;
using DotNetRevolution.Test.EventStoreDomain.Account.Commands;
using DotNetRevolution.Core.Reflection;
using System;
using System.Collections... | DotNetRevolution/DotNetRevolution-Framework | tests/DotNetRevolution.Test.EventStoreDomain/Account/AccountAggregateRoot.cs | https://github.com/DotNetRevolution/DotNetRevolution-Framework/blob/HEAD/tests/DotNetRevolution.Test.EventStoreDomain/Account/AccountAggregateRoot.cs | ghcode:00164:33555614900f | mit | codeparrot/github-code | 33555614900fa7d4e3f33ca8dc35df9228eb6e468f9379df9d93ef7f682285d2 | 0.75 | testing_debugging_repair_refactoring | 537 | false | 2026-07-17 |
using System;
using System.Linq;
using System.Reflection.Emit;
using ILDebugging.Decoder;
using NUnit.Framework;
#if LIGHT_EXPRESSION
using static FastExpressionCompiler.LightExpression.Expression;
namespace FastExpressionCompiler.LightExpression.IssueTests
#else
using System.Linq.Expressions;
using static... | dadhi/FastExpressionCompiler | test/FastExpressionCompiler.IssueTests/Issue91_Issue95_Tests.cs | https://github.com/dadhi/FastExpressionCompiler/blob/HEAD/test/FastExpressionCompiler.IssueTests/Issue91_Issue95_Tests.cs | ghcode:00164:1c8f74d40882 | mit | codeparrot/github-code | 1c8f74d408822308f64b1e2d6c4f6139d67bf3c04db9619daf5d3973f51ac3c5 | 0.75 | testing_debugging_repair_refactoring | 506 | false | 2026-07-17 |
using CharacterGen.Alignments;
using CharacterGen.Domain.Tables;
using CharacterGen.Races;
using NUnit.Framework;
namespace CharacterGen.Tests.Integration.Tables.Races.Metaraces
{
[TestFixture]
public class DragonSpeciesTests : CollectionTests
{
protected override string tableName
{
... | DnDGen/CharacterGen | CharacterGen.Tests.Integration.Tables/Races/Metaraces/DragonSpeciesTests.cs | https://github.com/DnDGen/CharacterGen/blob/HEAD/CharacterGen.Tests.Integration.Tables/Races/Metaraces/DragonSpeciesTests.cs | ghcode:00164:5c79bfde1362 | mit | codeparrot/github-code | 5c79bfde13623fcf3a194d1a7f8d7ad248000046be3cb048e88cd9420b4793e8 | 0.75 | testing_debugging_repair_refactoring | 491 | false | 2026-07-17 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
namespace MongoHelper.Test
{
public class Tests
{
public List<TestObject> TestList = new List<TestObject>();
/// <summary>
/// To register a new test call RegisterTest() with a title and a... | jonaswirth/MongoHelper | MongoHelper/src/MongoHelper.Test/Tests.cs | https://github.com/jonaswirth/MongoHelper/blob/HEAD/MongoHelper/src/MongoHelper.Test/Tests.cs | ghcode:00164:69473b74d5f5 | mit | codeparrot/github-code | 69473b74d5f57a951da3e39c516c72c49819c4c89aaab7420b4000927d8d9eea | 0.95 | testing_debugging_repair_refactoring | 267 | false | 2026-07-17 |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.Collections.Immutable;
using System.Diagnostics;
using Microsoft.CodeAnalysis.CSharp.Symbols;
using Mi... | panopticoncentral/roslyn | src/Compilers/CSharp/Portable/Lowering/LocalRewriter/LocalRewriter_NullCoalescingAssignmentOperator.cs | https://github.com/panopticoncentral/roslyn/blob/HEAD/src/Compilers/CSharp/Portable/Lowering/LocalRewriter/LocalRewriter_NullCoalescingAssignmentOperator.cs | ghcode:00164:237deb316e60 | mit | codeparrot/github-code | 237deb316e60eedf2c4cb8f19e2ae9590dc87fe5e6470efae27fd157644abbc9 | 0.85 | testing_debugging_repair_refactoring | 1,254 | false | 2026-07-17 |
using Cumulus.MessageContracts;
namespace Cumulus.UnitTests.DependencyResolverTests.DisposableComponents.MessageContracts
{
public class NullCommand : IBusCommand
{
}
} | AtmosphereMessaging/Cumulus | src/Tests/Cumulus.UnitTests/DependencyResolverTests/DisposableComponents/MessageContracts/NullCommand.cs | https://github.com/AtmosphereMessaging/Cumulus/blob/HEAD/src/Tests/Cumulus.UnitTests/DependencyResolverTests/DisposableComponents/MessageContracts/NullCommand.cs | ghcode:00164:d6bdf9200fae | mit | codeparrot/github-code | d6bdf9200fae4338ba57af03610633e98d395d231ed025b99350979833dc3a6a | 0.6 | testing_debugging_repair_refactoring | 36 | false | 2026-07-17 |
using NDifference.TypeSystem;
using System;
using System.Collections.Generic;
using System.Diagnostics;
using System.Globalization;
using System.Reflection;
namespace NDifference
{
internal class MsReflector : IAssemblyReflector
{
private System.Reflection.Assembly assembly;
public MsReflector(System.Reflectio... | deejaygraham/ndifference | src/Core/Inspection/MsReflector.cs | https://github.com/deejaygraham/ndifference/blob/HEAD/src/Core/Inspection/MsReflector.cs | ghcode:00164:76c5059c0a3f | mit | codeparrot/github-code | 76c5059c0a3f5a48be1855d14d99677259557fae5c966730a121d1368fae5261 | 0.7 | testing_debugging_repair_refactoring | 557 | false | 2026-07-17 |
using Moq;
using NUnit.Framework;
using SEV.DI;
using SEV.Domain.Services.Validation;
using SEV.Service.Contract;
namespace SEV.Service.DI.Tests
{
[TestFixture]
public class DIContainerExtensionsTests
{
private Mock<IDIContainer> m_containerMock;
private IDIContainer m_container;
... | sev15/SEVFramework | Tests/SEV.Service.Tests/DIContainerExtensionsTests.cs | https://github.com/sev15/SEVFramework/blob/HEAD/Tests/SEV.Service.Tests/DIContainerExtensionsTests.cs | ghcode:00164:151c7746502e | mit | codeparrot/github-code | 151c7746502eb87c665023dfa120bee21bbb27a602f7fdc64cee98581d36776a | 0.75 | testing_debugging_repair_refactoring | 458 | false | 2026-07-17 |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using Microsoft.Azure.Management.Compute.Models;
using System.Collections.Generic;
using System.Linq;
using Xunit;
namespace Compute.Tests
{
public class VM... | pilor/azure-sdk-for-net | src/SDKs/Compute/Compute.Tests/VMScaleSetTests/VMScaleSetVMTestsBase.cs | https://github.com/pilor/azure-sdk-for-net/blob/HEAD/src/SDKs/Compute/Compute.Tests/VMScaleSetTests/VMScaleSetVMTestsBase.cs | ghcode:00164:97475c3128d1 | mit | codeparrot/github-code | 97475c3128d1a32a9506df91a29cb4e3e3f9c5d4203e3fbfd9034e68abb63a1b | 0.85 | testing_debugging_repair_refactoring | 1,666 | false | 2026-07-17 |
#pragma warning disable 0649
using System;
using UnityEngine;
[CreateAssetMenu(menuName = "SpaceTrader/Quests/Generic Fetch Quest")]
public class CollectItemsQuest : Quest
{
[SerializeField]
private string itemTypeName;
[SerializeField]
private int quantity;
public override int XPReward
{
... | spriest487/spacetrader-unity | Assets/Quests/CollectItemsQuest.cs | https://github.com/spriest487/spacetrader-unity/blob/HEAD/Assets/Quests/CollectItemsQuest.cs | ghcode:00164:29e9eb63af0e | mit | codeparrot/github-code | 29e9eb63af0e1119d608e5c8442c367094cb58b778e7465ed8342c90df8f83bd | 0.6 | testing_debugging_repair_refactoring | 454 | false | 2026-07-17 |
using Handyman.Mediator.Pipeline;
using Lamar;
using Microsoft.Extensions.DependencyInjection;
using Shouldly;
using System.Collections.Generic;
using System.Threading;
using System.Threading.Tasks;
using Xunit;
namespace Handyman.Mediator.Tests
{
public class RequestFilterTests
{
[Fact]
publi... | JonasSamuelsson/Handyman | src/Handyman.Mediator/tests/RequestFilterTests.cs | https://github.com/JonasSamuelsson/Handyman/blob/HEAD/src/Handyman.Mediator/tests/RequestFilterTests.cs | ghcode:00164:da7fede7b285 | mit | codeparrot/github-code | da7fede7b285b43e8a0724a6b40d9618ee56afefcc64a315f3677132390ff482 | 0.85 | testing_debugging_repair_refactoring | 769 | false | 2026-07-17 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Xunit;
using Imml.ComponentModel;
using Moq;
using Imml.Numerics;
namespace Imml.Test
{
public class PositionalElementTests
{
[Fact]
public void Default_Position_Is_Zero_Vector()
{
v... | craigomatic/IMML | src/Imml.Test/PositionalElementTests.cs | https://github.com/craigomatic/IMML/blob/HEAD/src/Imml.Test/PositionalElementTests.cs | ghcode:00164:3e8f941c33da | mit | codeparrot/github-code | 3e8f941c33da329f18c93ac4727ced6a41aa07e07268eb199256ccc1e0ecf83d | 0.75 | testing_debugging_repair_refactoring | 135 | false | 2026-07-17 |
using UnityEngine;
using UnityEngine.UI;
using System.Collections;
using Assets.Core.Configuration;
using System.Linq;
using System.Collections.Generic;
public class TestingDBManager : MonoBehaviour {
private DatabaseManager db;
// Use this for initialization
void Start () {
db = GameObject.Find("Dat... | veselin-/Team4BabelGame | Assets/Prototype stuff/TestDatabaseManager/TestingDBManager.cs | https://github.com/veselin-/Team4BabelGame/blob/HEAD/Assets/Prototype stuff/TestDatabaseManager/TestingDBManager.cs | ghcode:00164:04225a790711 | mit | codeparrot/github-code | 04225a7907116f75e5fa95a506fe7829937a8747e47de19de5d90e7b1eae07f3 | 0.85 | testing_debugging_repair_refactoring | 357 | false | 2026-07-17 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Hapil.Testing.NUnit;
using Hapil.Operands;
using NUnit.Framework;
using InOut = Hapil.UnitTests.AncestorRepository.OperatorInputOutput;
namespace Hapil.UnitTests.Expressions
{
[TestFixture]
public class UnaryOperatorTests : ... | felix-b/Hapil | Source/Hapil.UnitTests/Expressions/UnaryOperatorTests.cs | https://github.com/felix-b/Hapil/blob/HEAD/Source/Hapil.UnitTests/Expressions/UnaryOperatorTests.cs | ghcode:00164:b8bd62647145 | mit | codeparrot/github-code | b8bd62647145afcd1fd447567a3d318655c36ce8899b9af4313bdf350b5d624e | 0.85 | testing_debugging_repair_refactoring | 5,981 | false | 2026-07-17 |
// ------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License (MIT). See License.txt in the repo root for license information.
// ------------------------------------------------------------
using Moq;
using System;
us... | karolz-ms/diagnostics-eventflow | test/Microsoft.Diagnostics.EventFlow.Outputs.Tests/ApplicationInsightsOutputTests.cs | https://github.com/karolz-ms/diagnostics-eventflow/blob/HEAD/test/Microsoft.Diagnostics.EventFlow.Outputs.Tests/ApplicationInsightsOutputTests.cs | ghcode:00164:d4fa5314cf71 | mit | codeparrot/github-code | d4fa5314cf71e465d56d72f1834a550bd38b16d384929e654a6e6de522f81dd8 | 0.85 | testing_debugging_repair_refactoring | 1,154 | false | 2026-07-17 |
namespace given
{
using FluentAssertions;
using Microsoft.AspNetCore.Mvc;
using Microsoft.AspNetCore.Mvc.Conventions;
using Microsoft.AspNetCore.Mvc.Conventions.Controllers;
using System.Linq;
using System.Net.Http;
using System.Threading.Tasks;
using Xunit;
using static System.Net.... | joaopbnogueira/aspnet-api-versioning | test/Microsoft.AspNetCore.Mvc.Acceptance.Tests/Conventions/given/a_query_string_versioned_Controller_split_into_two_types_using_conventions.cs | https://github.com/joaopbnogueira/aspnet-api-versioning/blob/HEAD/test/Microsoft.AspNetCore.Mvc.Acceptance.Tests/Conventions/given/a_query_string_versioned_Controller_split_into_two_types_using_conventions.cs | ghcode:00164:1dbb3d2e252b | mit | codeparrot/github-code | 1dbb3d2e252baa70a7e2329d44b07cb4c0a329b9620d49a6d49b7fe79afbdcef | 0.7 | testing_debugging_repair_refactoring | 466 | false | 2026-07-17 |
using UiMatic.SeleniumWebDriver.IntegrationTests.Pages;
using Xunit;
namespace UiMatic.SeleniumWebDriver.IntegrationTests
{
public class PageControlTests : TestBase
{
[Theory]
[InlineData(TestTarget.Chrome)]
public void Login_And_Save_Profile_Gives_Success_Message(TestTarget target)
... | dburriss/UiMatic | examples/UiMatic.SeleniumWebDriver.IntegrationTests/PageControlTests.cs | https://github.com/dburriss/UiMatic/blob/HEAD/examples/UiMatic.SeleniumWebDriver.IntegrationTests/PageControlTests.cs | ghcode:00164:1222c4ad950c | mit | codeparrot/github-code | 1222c4ad950cb0c151d347582904b5817fc33d0eed337a566c4a823c77255038 | 0.75 | testing_debugging_repair_refactoring | 263 | false | 2026-07-17 |
using System;
using NUnit.Framework;
using Lucene.Net.Analysis.Util;
using System.IO;
using Lucene.Net.Analysis.Miscellaneous;
using Lucene.Net.Analysis.Core;
namespace Lucene.Net.Analysis.No
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the N... | laimis/lucenenet | src/Lucene.Net.Tests.Analysis.Common/Analysis/No/TestNorwegianLightStemFilter.cs | https://github.com/laimis/lucenenet/blob/HEAD/src/Lucene.Net.Tests.Analysis.Common/Analysis/No/TestNorwegianLightStemFilter.cs | ghcode:00164:6f6dc0c31423 | apache-2.0 | codeparrot/github-code | 6f6dc0c31423d7940f044e7ca36df3b2b289bcf421417abfd346913b27970f91 | 0.85 | testing_debugging_repair_refactoring | 1,035 | false | 2026-07-17 |
/*
* Copyright 2011 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to i... | CoiniumServ/BitcoinSharp | tags/0.2/Test/ChainSplitTests.cs | https://github.com/CoiniumServ/BitcoinSharp/blob/HEAD/tags/0.2/Test/ChainSplitTests.cs | ghcode:00164:df6be7da7537 | apache-2.0 | codeparrot/github-code | df6be7da75378b632969b60634ee3465d7d3ae7789e08819753283b3efebd70a | 0.95 | testing_debugging_repair_refactoring | 2,897 | false | 2026-07-17 |
// --------------------------------------------------------------------------------------------------------------------
// <copyright file="ImmMacros.cs" company="Oswald Maskens">
// Copyright 2013-2014 Oswald Maskens
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use thi... | OzieGamma/NiceNios2 | Nios2Compiler.Test/Macros/ImmMacros.cs | https://github.com/OzieGamma/NiceNios2/blob/HEAD/Nios2Compiler.Test/Macros/ImmMacros.cs | ghcode:00164:65975585a12b | apache-2.0 | codeparrot/github-code | 65975585a12bd1a9857cd6be995e5f595e9dbc1917688f4f12f9cc36aa19e1e0 | 0.7 | testing_debugging_repair_refactoring | 433 | false | 2026-07-17 |
using System.Threading;
using NUnit.Framework;
namespace MsieJavaScriptEngine.Test.Common
{
[TestFixture]
public abstract class MultithreadingTestsBase : TestsBase
{
[Test]
public virtual void ExecutionOfCodeFromDifferentThreadsIsCorrect()
{
// Arrange
const string variableName = "foo";
string inpu... | Taritsyn/MsieJavaScriptEngine | test/MsieJavaScriptEngine.Test.Common/MultithreadingTestsBase.cs | https://github.com/Taritsyn/MsieJavaScriptEngine/blob/HEAD/test/MsieJavaScriptEngine.Test.Common/MultithreadingTestsBase.cs | ghcode:00164:68c5e0319c5f | apache-2.0 | codeparrot/github-code | 68c5e0319c5ff5388c0622e2a27421a8baf66f14e1059faddbae324428410741 | 0.85 | testing_debugging_repair_refactoring | 207 | false | 2026-07-17 |
using LIC;
using LIC.Tokenization;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace LIC_Compiler_test.TokenizationTests
{
[TestClass]
public class IdentifierTest
{
[TestMethod]
public void TestIdentifier_0_Basic()
{
foreach (string code in new[] { "test", "... | Mikhail158/LIC-Language | LIC_Compiler_test/tokenization/IdentifierTest.cs | https://github.com/Mikhail158/LIC-Language/blob/HEAD/LIC_Compiler_test/tokenization/IdentifierTest.cs | ghcode:00164:5aafd706ea6a | apache-2.0 | codeparrot/github-code | 5aafd706ea6a8d7013bbd630319296bcf9a67d8a1cd734f9dc276ede0619c38c | 0.6 | testing_debugging_repair_refactoring | 278 | false | 2026-07-17 |
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using NCaseFramework.Front.Ui;
using NDsl.Front.Api;
using NDsl.Front.Ui;
using NUnit.Framework;
namespace NCaseFramework.Test
{
[TestFixture]
public class CombinationsTests
{
[SuppressMessage("ReSharper", "MemberCanBePrivate... | jeromerg/NCase | src/NCase.Test/CombinationsTests.cs | https://github.com/jeromerg/NCase/blob/HEAD/src/NCase.Test/CombinationsTests.cs | ghcode:00164:f914a0c8c695 | apache-2.0 | codeparrot/github-code | f914a0c8c695045e299442e950f6dc69d6d746b35755bf585d4541efe9821da1 | 0.75 | testing_debugging_repair_refactoring | 2,404 | false | 2026-07-17 |
using System;
namespace Elders.Cronus.DomainModeling
{
public interface IAggregateRootApplicationService
{
IAggregateRepository Repository { get; set; }
}
public class AggregateRootApplicationService<AR> : IAggregateRootApplicationService where AR : IAggregateRoot
{
public IAggreg... | Elders/Proteus | src/Elders.Proteus.Tests.Models/DomainModeling/AggregateRootApplicationService.cs | https://github.com/Elders/Proteus/blob/HEAD/src/Elders.Proteus.Tests.Models/DomainModeling/AggregateRootApplicationService.cs | ghcode:00164:a478e7756ff2 | apache-2.0 | codeparrot/github-code | a478e7756ff2f3f28ae13c3b0c479912004312031649f6c067494a2b2acbb90d | 0.75 | testing_debugging_repair_refactoring | 120 | false | 2026-07-17 |
// ----------------------------------------------------------------------------
// Copyright (c) Microsoft Corporation. All rights reserved.
// ----------------------------------------------------------------------------
using DeviceTests.Shared.Helpers;
using DeviceTests.Shared.Helpers.Models;
using DeviceTests.Shar... | Azure/azure-mobile-apps-net-client | e2etests/DeviceTests.Shared/Tests/CUD.Test.cs | https://github.com/Azure/azure-mobile-apps-net-client/blob/HEAD/e2etests/DeviceTests.Shared/Tests/CUD.Test.cs | ghcode:00164:e186606b0cb6 | apache-2.0 | codeparrot/github-code | e186606b0cb66aaa85065a9011cca0495ade9838faaa7cfae971ce3b5c0c0952 | 0.95 | testing_debugging_repair_refactoring | 3,330 | false | 2026-07-17 |
namespace Virtlink.Utilib.Collections
{
/// <summary>
/// Tests the <see cref="ExtHashSet{T}"/> class.
/// </summary>
public partial class ExtHashSetTests
{
}
}
| Virtlink/utilib | test/Virtlink.Utilib.Tests/Collections/ExtHashSetTests.cs | https://github.com/Virtlink/utilib/blob/HEAD/test/Virtlink.Utilib.Tests/Collections/ExtHashSetTests.cs | ghcode:00164:2d51669ebbc4 | apache-2.0 | codeparrot/github-code | 2d51669ebbc4ab3e2cda67de73c33beb9164051cfae2243352cbf0760d89a2e3 | 0.6 | testing_debugging_repair_refactoring | 46 | false | 2026-07-17 |
using System;
using System.Diagnostics;
using System.Numerics;
namespace SolverPrototypeTests.SpecializedTests
{
static class BallSocketConvergenceTests
{
public static void Test()
{
const int width = 32;
const int height = 32;
const int length = 32;
... | RossNordby/scratchpad | SolverPrototype/SolverPrototypeTests/SpecializedTests/BallSocketConvergenceTests.cs | https://github.com/RossNordby/scratchpad/blob/HEAD/SolverPrototype/SolverPrototypeTests/SpecializedTests/BallSocketConvergenceTests.cs | ghcode:00164:77b5348cdaa1 | apache-2.0 | codeparrot/github-code | 77b5348cdaa13a6a676202d97f3b1296cf95a5196941e40ae1315e3ee48c1713 | 0.85 | testing_debugging_repair_refactoring | 639 | false | 2026-07-17 |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Linq;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Microsoft.CodeAnalysis.CSharp.Test.Utilities;
using Microsoft.CodeAnalysis.Test.Utilitie... | MichalStrehovsky/roslyn | src/Compilers/CSharp/Test/Emit/CodeGen/CodeGenAwaitForeachTests.cs | https://github.com/MichalStrehovsky/roslyn/blob/HEAD/src/Compilers/CSharp/Test/Emit/CodeGen/CodeGenAwaitForeachTests.cs | ghcode:00164:83b3e9519e53 | apache-2.0 | codeparrot/github-code | 83b3e9519e53cf32a5f37b4a6bfb2639c8cd8854cb0c83769ac3142a2072873d | 0.75 | testing_debugging_repair_refactoring | 40,701 | false | 2026-07-17 |
using System;
using System.Configuration;
using System.Diagnostics;
using System.IO;
using System.Net;
using System.Runtime.CompilerServices;
using CIAPI.Rpc;
using Mocument.DataAccess;
using Mocument.ReverseProxyServer;
using NUnit.Framework;
namespace CIAPI.RecordedTests.Infrastructure
{
/// <summary>
/// W... | bitpusher/mocument | src/Mocument/CIAPI/CIAPI.RecordedTests/Infrastructure/CIAPIRecordingFixtureBase.cs | https://github.com/bitpusher/mocument/blob/HEAD/src/Mocument/CIAPI/CIAPI.RecordedTests/Infrastructure/CIAPIRecordingFixtureBase.cs | ghcode:00164:16e9e2552717 | apache-2.0 | codeparrot/github-code | 16e9e25527179b29da21ac32921ae19907d21767853bc7bb139a6e093953acf3 | 0.7 | testing_debugging_repair_refactoring | 970 | false | 2026-07-17 |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using Microsoft.CodeAnalysis.CSharp.Symbols;
using Microsoft.CodeAnalysis.CSharp.Syntax;
using Roslyn.Utilities;
using System.Collections.Generic;
using Syst... | balazssimon/meta-cs | src/Main/MetaDslx.CodeAnalysis.CSharp/Binder/Binder_Patterns.cs | https://github.com/balazssimon/meta-cs/blob/HEAD/src/Main/MetaDslx.CodeAnalysis.CSharp/Binder/Binder_Patterns.cs | ghcode:00164:a12998a7281c | apache-2.0 | codeparrot/github-code | a12998a7281cc4b3f6b0f29e65bbed02c99ad27cd7a735ec4c198889eb098e7d | 0.85 | testing_debugging_repair_refactoring | 9,447 | false | 2026-07-17 |
namespace ArtTrail.WebApi.Tests
{
using System.Collections.Generic;
using System.Linq;
using ArtTrail.Data.Interfaces;
using ArtTrail.DomainEntities;
using ArtTrail.WebApi.Controllers;
using ArtTrail.WebApi.Tests.Helpers;
using FluentAssertions;
using Moq;
using NUnit.Framework;... | zebslc/ArtTrail | ArtTrail.WebApi.Tests/ArtistCategoryTests.cs | https://github.com/zebslc/ArtTrail/blob/HEAD/ArtTrail.WebApi.Tests/ArtistCategoryTests.cs | ghcode:00164:2774494d8cd0 | apache-2.0 | codeparrot/github-code | 2774494d8cd077a87dfc2981c06b20c9b62a6a4adfdec83e2170cfc3de014f5c | 0.85 | testing_debugging_repair_refactoring | 430 | false | 2026-07-17 |
/*
Copyright 2016 TUGraz, http://www.tugraz.at/
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
This project has received funding from the European Union’s Horizon
2020 research and innovation programme under grant agreement ... | RAGE-TUGraz/CompetenceBasedAssets | UnitTestCompetences/TestCaseCompetences.cs | https://github.com/RAGE-TUGraz/CompetenceBasedAssets/blob/HEAD/UnitTestCompetences/TestCaseCompetences.cs | ghcode:00164:6d6bd0b5aac4 | apache-2.0 | codeparrot/github-code | 6d6bd0b5aac4c64f76e3a27843b980b39c292121c8a6198bdea5a5a865621cf7 | 0.85 | testing_debugging_repair_refactoring | 7,838 | false | 2026-07-17 |
using Proto.Mailbox;
using System;
using Proto.TestFixtures;
using Xunit;
namespace Proto.Tests
{
public class PropsTests
{
[Fact]
public void Given_Props_When_WithDispatcher_Then_mutate_Dispatcher()
{
var dispatcher = new TestDispatcher();
var props = new Prop... | tomliversidge/protoactor-dotnet | tests/Proto.Actor.Tests/PropsTests.cs | https://github.com/tomliversidge/protoactor-dotnet/blob/HEAD/tests/Proto.Actor.Tests/PropsTests.cs | ghcode:00164:b16063f7f487 | apache-2.0 | codeparrot/github-code | b16063f7f487120627e3bfc12fe732b71ad3c3b27e648a63ecfb1b8e4ded880e | 0.75 | testing_debugging_repair_refactoring | 1,150 | false | 2026-07-17 |
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.IO;
using System.Linq;
using System.Text;
using CoreLib.Plugin;
using ICSharpCode.NRefactory.CSharp;
using ICSharpCode.NRefactory.CSharp.TypeSystem;
using ICSharpCode.NRefactory.TypeSystem;
using KnockoutApi;
using Moq;
... | Saltarelle/SaltarelleKnockout | Knockout.Tests/AttributeTests.cs | https://github.com/Saltarelle/SaltarelleKnockout/blob/HEAD/Knockout.Tests/AttributeTests.cs | ghcode:00164:88944b627b21 | apache-2.0 | codeparrot/github-code | 88944b627b213454ffdf2e10aac028199cac4d439a79c019ac8c94ac2b7699bb | 0.75 | testing_debugging_repair_refactoring | 3,286 | false | 2026-07-17 |
using CSharpFormatting.Common;
using System.Linq;
using Xunit;
namespace CSharpFormatting.Parsing.Roslyn.Test.Helper
{
public static class ExpressionHelper
{
public static void Check(string expression, AnnotationResult result)
{
Assert.Equal(0, result.DiagnosticResults.Count);
... | lukas-lansky/CSharpFormatting | CSharpFormatting/CSharpFormatting.Parsing.Roslyn.Test/Helper/ExpressionHelper.cs | https://github.com/lukas-lansky/CSharpFormatting/blob/HEAD/CSharpFormatting/CSharpFormatting.Parsing.Roslyn.Test/Helper/ExpressionHelper.cs | ghcode:00164:050554852c89 | apache-2.0 | codeparrot/github-code | 050554852c89552b269e978da216f30afa28bf7c632be4ac59dc4bd851ebe7b9 | 0.6 | testing_debugging_repair_refactoring | 87 | false | 2026-07-17 |
#region License, Terms and Author(s)
//
// Gurtle - IBugTraqProvider for Google Code
// Copyright (c) 2008, 2009 Atif Aziz. All rights reserved.
//
// Author(s):
//
// Atif Aziz, http://www.raboof.com
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file exce... | csware/GurtleReloaded | src/Gurtle/Providers/GoogleCode/IssueTableParser.cs | https://github.com/csware/GurtleReloaded/blob/HEAD/src/Gurtle/Providers/GoogleCode/IssueTableParser.cs | ghcode:00164:95de129aaa15 | apache-2.0 | codeparrot/github-code | 95de129aaa15c345fa53751c029df1db32528690c7e80d5527ee6af6859a7b55 | 0.7 | testing_debugging_repair_refactoring | 731 | false | 2026-07-17 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Org.Unidal.Cat;
using System.Threading;
using Org.Unidal.Cat.Message;
namespace CatClientTest.PerformanceTest
{
class ThreadPoolTest
{
public static void Test()
{
const int N_TASKS = 1;
... | dianping/cat | lib/csharp/test/CatClientTest/ThreadPoolTest.cs | https://github.com/dianping/cat/blob/HEAD/lib/csharp/test/CatClientTest/ThreadPoolTest.cs | ghcode:00164:bad2ab705534 | apache-2.0 | codeparrot/github-code | bad2ab705534624e31fc6dc52151f9714748ae307e8352a9a8f14a44a717f7a3 | 0.85 | testing_debugging_repair_refactoring | 564 | false | 2026-07-17 |
using NBi.GenbiL;
using NBi.GenbiL.Action.Case;
using NBi.GenbiL.Parser.Valuable;
using NBi.GenbiL.Stateful;
using NUnit.Framework;
using System;
using System.Collections.Generic;
using System.Data;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace NBi.Testing.GenbiL.Action.Case
{
publ... | Seddryck/NBi | NBi.Testing.GenbiL/Action/Case/SeparateCaseActionTest.cs | https://github.com/Seddryck/NBi/blob/HEAD/NBi.Testing.GenbiL/Action/Case/SeparateCaseActionTest.cs | ghcode:00164:6cdd4cf5e8c8 | apache-2.0 | codeparrot/github-code | 6cdd4cf5e8c8c4c880071341b6b13b07c367c3a7b3500c805f23ac4b831ac0ac | 0.75 | testing_debugging_repair_refactoring | 531 | false | 2026-07-17 |
namespace MbUnit.Demo
{
using System;
using MbUnit.Framework;
using System.Collections;
using System.Diagnostics;
public class IListProviderFactory
{
[Factory]
public ArrayList SomeArray
{
get
{
return new ArrayList();
}
}
[Factory]
public Arra... | Gallio/mbunit-v2 | src/mbunit/MbUnit.Demo/TypeFixtureAttributeTest.cs | https://github.com/Gallio/mbunit-v2/blob/HEAD/src/mbunit/MbUnit.Demo/TypeFixtureAttributeTest.cs | ghcode:00164:d34957224fdd | apache-2.0 | codeparrot/github-code | d34957224fdd9a55f22ed171b25bd0d537f54c06e069a1b082502e87b9bef7e8 | 0.85 | testing_debugging_repair_refactoring | 338 | false | 2026-07-17 |
using System;
using Maplink.Webservices.Places.Client.Builders;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using SharpTestsEx;
namespace Maplink.Webservices.Places.Client.UnitTests.Builders
{
[TestClass]
public class HttpHeaderBuilderTest
{
[TestMethod]
public void Shou... | maplink/places-api-client-dotnet | Maplink.Webservices.Places.Client.UnitTests/Builders/HttpHeaderBuilderTest.cs | https://github.com/maplink/places-api-client-dotnet/blob/HEAD/Maplink.Webservices.Places.Client.UnitTests/Builders/HttpHeaderBuilderTest.cs | ghcode:00164:0383f0473d65 | apache-2.0 | codeparrot/github-code | 0383f0473d65283eed940895ac0814a58e306785788f1b9b6fa11a98068f7e18 | 0.6 | testing_debugging_repair_refactoring | 209 | false | 2026-07-17 |
#region -- License Terms --
//
// NLiblet
//
// Copyright (C) 2011 FUJIWARA, Yusuke
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/L... | yfakariya/NLiblet | test/Core.Test/Text/HexFormatTest.cs | https://github.com/yfakariya/NLiblet/blob/HEAD/test/Core.Test/Text/HexFormatTest.cs | ghcode:00164:9874b8cc1fe4 | apache-2.0 | codeparrot/github-code | 9874b8cc1fe416ca23f660df7f1ba0e45c4075e5ff56c681e13feb1350a03a89 | 0.7 | testing_debugging_repair_refactoring | 1,184 | false | 2026-07-17 |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System;
using System.Collections.Generic;
using System.Collections.Immutable;
using System.Diagnostics;
using System.Linq;
using System.Threading;
usin... | weltkante/roslyn | src/Workspaces/Core/Portable/Shared/Extensions/ITypeSymbolExtensions.cs | https://github.com/weltkante/roslyn/blob/HEAD/src/Workspaces/Core/Portable/Shared/Extensions/ITypeSymbolExtensions.cs | ghcode:00164:634a8af60c5e | apache-2.0 | codeparrot/github-code | 634a8af60c5e78294c95a19a2f44d4d8bb54de142c9aba1d2639425010248123 | 0.85 | testing_debugging_repair_refactoring | 5,964 | false | 2026-07-17 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Linq.Expressions;
using System.Reflection.Emit;
using System.Text;
using FactoryNet.Core.Helpers;
using FactoryNet.Tests.TestModels;
using NUnit.Framework;
namespace FactoryNet.Tests.Helpers
{
[TestFixture]
public class Constructo... | StefanoGermani/FactoryNet | FactoryNet.Tests/Helpers/ConstructorHelperTests.cs | https://github.com/StefanoGermani/FactoryNet/blob/HEAD/FactoryNet.Tests/Helpers/ConstructorHelperTests.cs | ghcode:00164:db54a2005273 | apache-2.0 | codeparrot/github-code | db54a2005273eb4a0b891cf1dc1c4c624bd84f53828d2ef4761db23130da3110 | 0.75 | testing_debugging_repair_refactoring | 174 | false | 2026-07-17 |
using FluentAssertions;
using Microsoft.VisualStudio.TestTools.UnitTesting;
using Stripe.Client.Sdk.Clients;
using Stripe.Client.Sdk.Models.Arguments;
using System.Linq;
namespace Stripe.Client.Sdk.Tests.Models.Arguments
{
[TestClass]
public class RecipientUpdateArgumentsTests
{
private RecipientUp... | smiggleworth/Stripe.Client | src/Stripe.Client.Sdk.Tests/Models/Arguments/RecipientUpdateArgumentsTests.cs | https://github.com/smiggleworth/Stripe.Client/blob/HEAD/src/Stripe.Client.Sdk.Tests/Models/Arguments/RecipientUpdateArgumentsTests.cs | ghcode:00164:2978e1727ccf | apache-2.0 | codeparrot/github-code | 2978e1727ccf980f017a230e4975763c0c5b91f2a5b1fb8f7a9173c6ffa3ec0e | 0.85 | testing_debugging_repair_refactoring | 809 | false | 2026-07-17 |
using Okra.Builder;
using System;
using System.Collections.Generic;
using System.Threading.Tasks;
using Xunit;
using Okra.Lifetime;
using Okra.Tests.Mocks;
namespace Okra.Tests.Builder
{
public class UseMiddlewareExtensionsFixture
{
[Fact]
public void UseMiddleware_WithNullApp_ThrowsException(... | OkraFramework/Okra.Core | test/Okra.Core.Tests/Builder/UseMiddlewareExtensionsFixture.cs | https://github.com/OkraFramework/Okra.Core/blob/HEAD/test/Okra.Core.Tests/Builder/UseMiddlewareExtensionsFixture.cs | ghcode:00164:2994e1bacb8e | apache-2.0 | codeparrot/github-code | 2994e1bacb8e2ca7a206a60b9be62b7860b0a7b65816b99cf4602d0f2b20d54e | 0.6 | testing_debugging_repair_refactoring | 540 | false | 2026-07-17 |
//BSD, 2014-present, WinterDev
//MattersHackers
//AGG 2.4
using PixelFarm.Drawing;
using PixelFarm.VectorMath;
using PixelFarm.CpuBlit.VertexProcessing;
using PaintLab.Svg;
namespace PixelFarm.CpuBlit
{
public class SpriteShape
{
VgVisualElement _vgVisElem;
byte _alpha;
Vector2 _cent... | LayoutFarm/PixelFarm | src/Tests/TestSamples_Painting_Focus/00_DemoBase/SpriteShape.cs | https://github.com/LayoutFarm/PixelFarm/blob/HEAD/src/Tests/TestSamples_Painting_Focus/00_DemoBase/SpriteShape.cs | ghcode:00164:dfec7a018355 | bsd-2-clause | codeparrot/github-code | dfec7a0183551ca350433aa9c350a6b54c8af83fb8520943473877ee4e0f8bdb | 0.88 | testing_debugging_repair_refactoring | 1,681 | false | 2026-07-17 |
// <copyright file="TestEvent.cs" company="Corsham Science">
// Copyright (c) Corsham Science. All rights reserved.
// </copyright>
namespace AggregateRepository.Core.Tests
{
using System;
internal class TestEvent
{
public TestEvent(Guid eventId) => EventId = eventId;
public Guid EventId... | cognisant/cr-aggregaterepository | src/AggregateRepository.Core.Tests/TestEvent.cs | https://github.com/cognisant/cr-aggregaterepository/blob/HEAD/src/AggregateRepository.Core.Tests/TestEvent.cs | ghcode:00164:7f61e511d096 | bsd-3-clause | codeparrot/github-code | 7f61e511d0963af01a5e3d4c5709770b42d75e7d943b9ae62063a87343bc7ba8 | 0.85 | testing_debugging_repair_refactoring | 78 | false | 2026-07-17 |
using System;
using System.Linq;
using Microsoft.IdentityModel.Claims;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Thinktecture.IdentityModel.Tests.Misc
{
[TestClass]
public class PrincipalTests
{
[TestMethod]
public void CreateAnonymousPrincipal()
{
v... | IdentityModel/Thinktecture.IdentityModel.40 | IdentityModel/Thinktecture.IdentityModel.Tests/Misc/PrincipalTests.cs | https://github.com/IdentityModel/Thinktecture.IdentityModel.40/blob/HEAD/IdentityModel/Thinktecture.IdentityModel.Tests/Misc/PrincipalTests.cs | ghcode:00164:2249890efaf0 | bsd-3-clause | codeparrot/github-code | 2249890efaf0e5968e7e42ff46deecb18bdcec93ad8ea26e957f7eb40e148d85 | 0.75 | testing_debugging_repair_refactoring | 406 | false | 2026-07-17 |
using System;
using System.Linq;
using System.Threading.Tasks;
using Cosmos.TestRunner;
namespace Cosmos.Compiler.Tests.Bcl.System
{
class UInt32Test
{
public static void Execute()
{
UInt32 value;
String result;
String expectedResult;
value = UI... | Cyber4/Cosmos | Tests/Cosmos.Compiler.Tests.Bcl/System/UInt32Test.cs | https://github.com/Cyber4/Cosmos/blob/HEAD/Tests/Cosmos.Compiler.Tests.Bcl/System/UInt32Test.cs | ghcode:00164:3e721d50263d | bsd-3-clause | codeparrot/github-code | 3e721d50263d42f5a11766bba3429be8df307efa959e864d7e2b62bfd2c1ea32 | 0.85 | testing_debugging_repair_refactoring | 382 | false | 2026-07-17 |
using System;
using System.Transactions;
using Castle.Windsor;
using Castle.Windsor.Configuration.Interpreters;
using Rhino.Mocks;
using Rhino.ServiceBus.Impl;
using Rhino.ServiceBus.Internal;
using Rhino.ServiceBus.MessageModules;
using Rhino.ServiceBus.Messages;
using Xunit;
namespace Rhino.ServiceBus.Tes... | brumschlag/rhino-tools | rhino-service.bus/Rhino.ServiceBus.Tests/MessageLoggingTests.cs | https://github.com/brumschlag/rhino-tools/blob/HEAD/rhino-service.bus/Rhino.ServiceBus.Tests/MessageLoggingTests.cs | ghcode:00164:5fd96083e764 | bsd-3-clause | codeparrot/github-code | 5fd96083e764493e1546c0a8ea390feab8ff0828df34cf4f3e2e07284f83fbb3 | 0.75 | testing_debugging_repair_refactoring | 1,062 | false | 2026-07-17 |
using System;
using System.Diagnostics.Contracts;
using System.Linq.Expressions;
using NUnit.Framework;
using NUnit.Framework.Constraints;
namespace z80.Tests
{
[TestFixture]
internal class JumpGroupTests : OpCodeTestBase
{
[Test]
public void Test_JP_nn()
{
asm.Jp(0x000... | sklivvz/z80 | z80.Tests/JumpGroupTests.cs | https://github.com/sklivvz/z80/blob/HEAD/z80.Tests/JumpGroupTests.cs | ghcode:00164:8ec1fdc0cf39 | bsd-3-clause | codeparrot/github-code | 8ec1fdc0cf394fc763418f05fd470bce01ddd4f3d54d8d6d3f851fea17fb5e43 | 0.75 | testing_debugging_repair_refactoring | 1,795 | false | 2026-07-17 |
using FluentNHibernate.MappingModel;
using FluentNHibernate.MappingModel.Collections;
using FluentNHibernate.MappingModel.Output;
using FluentNHibernate.Testing.Testing;
using NUnit.Framework;
namespace FluentNHibernate.Testing.MappingModel.Output
{
[TestFixture]
public class XmlManyToManyWriterTester... | MiguelMadero/fluent-nhibernate | src/FluentNHibernate.Testing/MappingModel/Output/XmlManyToManyWriterTester.cs | https://github.com/MiguelMadero/fluent-nhibernate/blob/HEAD/src/FluentNHibernate.Testing/MappingModel/Output/XmlManyToManyWriterTester.cs | ghcode:00164:906411db940f | bsd-3-clause | codeparrot/github-code | 906411db940fba9dd0e19480df123ba78b95da3750939ba73acc2675421b1674 | 0.75 | testing_debugging_repair_refactoring | 537 | false | 2026-07-17 |
// Code generated by Microsoft (R) AutoRest Code Generator 1.2.1.0
// Changes may cause incorrect behavior and will be lost if the code is
// regenerated.
namespace ApplicationGateway.Models
{
using Newtonsoft.Json;
using System.Linq;
/// <summary>
/// Contains bandwidths offered in ExpressRouteServic... | lmazuel/autorest | Samples/test/end-to-end/network/Client/Models/ExpressRouteServiceProviderBandwidthsOffered.cs | https://github.com/lmazuel/autorest/blob/HEAD/Samples/test/end-to-end/network/Client/Models/ExpressRouteServiceProviderBandwidthsOffered.cs | ghcode:00164:715f77956668 | mit | codeparrot/github-code | 715f7795666861a37d4f821939a9ead3859d9c2032284c61567c5ecbf670cee8 | 0.95 | testing_debugging_repair_refactoring | 370 | false | 2026-07-17 |
using System;
using NUnit.Framework;
using Whois.Parsers;
namespace Whois.Parsing.Whois.Rotld.Ro.Ro
{
[TestFixture]
public class RoParsingTests : ParsingTests
{
private WhoisParser parser;
[SetUp]
public void SetUp()
{
SerilogConfig.Init();
parser =... | flipbit/whois | Whois.Tests/Parsing/whois.rotld.ro/ro/RoParsingTests.cs | https://github.com/flipbit/whois/blob/HEAD/Whois.Tests/Parsing/whois.rotld.ro/ro/RoParsingTests.cs | ghcode:00164:650f91771437 | mit | codeparrot/github-code | 650f91771437ba0c921826061c8934054b5c295999516fcf649061c3180f1f16 | 0.85 | testing_debugging_repair_refactoring | 803 | false | 2026-07-17 |
// Licensed under MIT No Attribution, see LICENSE file at the root.
// Copyright 2013 Andreas Gullberg Larsen (andreas.larsen84@gmail.com). Maintained at https://github.com/angularsen/UnitsNet.
using UnitsNet.Units;
using Xunit;
namespace UnitsNet.Tests
{
public class UnitInfoTests
{
[Fact]
p... | anjdreas/UnitsNet | UnitsNet.Tests/UnitInfoTests.cs | https://github.com/anjdreas/UnitsNet/blob/HEAD/UnitsNet.Tests/UnitInfoTests.cs | ghcode:00164:ff34d93173c6 | mit | codeparrot/github-code | ff34d93173c6937dbb01353af6fa5b95c8fda187bff22a0a9ee83ed1704e5169 | 0.85 | testing_debugging_repair_refactoring | 210 | false | 2026-07-17 |
using SharpSapRfc.Metadata;
using SharpSapRfc.Plain;
using SharpSapRfc.Soap;
using SharpSapRfc.Soap.Configuration;
using SharpSapRfc.Types;
using System;
using Xunit;
namespace SharpSapRfc.Test.Metadata
{
public class Soap_FunctionMetadataTestCase : FunctionMetadataTestCase
{
private SoapSapRfcConnect... | goenning/SharpSapRfc | tests/Metadata/FunctionMetadataTestCase.cs | https://github.com/goenning/SharpSapRfc/blob/HEAD/tests/Metadata/FunctionMetadataTestCase.cs | ghcode:00164:6955f8918b1b | mit | codeparrot/github-code | 6955f8918b1b070242532df5dd017041a7e76eab0577e20b4d4805d69b6a77a2 | 0.6 | testing_debugging_repair_refactoring | 1,039 | false | 2026-07-17 |
namespace StudentSystem.Services.Models
{
using System;
public class TestModel
{
public int Id { get; set; }
public virtual Guid CourseId { get; set; }
}
} | GAlex7/TA | 13. Web/01. HW/StudentSystem/Services/StudentSystem.Services/Models/TestModel.cs | https://github.com/GAlex7/TA/blob/HEAD/13. Web/01. HW/StudentSystem/Services/StudentSystem.Services/Models/TestModel.cs | ghcode:00164:1356b924436b | mit | codeparrot/github-code | 1356b924436b405e280f1a3bdefb4c32a8090a0598a71281cc89573d8b2a61f7 | 0.5 | testing_debugging_repair_refactoring | 44 | false | 2026-07-17 |
using System.Threading;
using BenchmarkDotNet.Attributes;
using BenchmarkDotNet.Configs;
using BenchmarkDotNet.Jobs;
using Perfolizer.Mathematics.OutlierDetection;
namespace BenchmarkDotNet.Samples
{
[Config(typeof(Config))]
public class IntroOutliers
{
private class Config : ManualConfig
... | PerfDotNet/BenchmarkDotNet | samples/BenchmarkDotNet.Samples/IntroOutliers.cs | https://github.com/PerfDotNet/BenchmarkDotNet/blob/HEAD/samples/BenchmarkDotNet.Samples/IntroOutliers.cs | ghcode:00164:41154d479ea9 | mit | codeparrot/github-code | 41154d479ea90585308134b74a03aeb0f971e0d10193764f72b46b2b30927bea | 0.75 | testing_debugging_repair_refactoring | 216 | false | 2026-07-17 |
namespace SimpleInjector.Integration.Web.Tests.Unit
{
using System;
public interface ICommand
{
void Execute();
}
public class ConcreteCommand : ICommand
{
public void Execute()
{
}
}
public class DisposableCommand : ICommand, IDisposable
{
... | simpleinjector/SimpleInjector | src/SimpleInjector.Integration.Web.Tests.Unit/TestClasses.cs | https://github.com/simpleinjector/SimpleInjector/blob/HEAD/src/SimpleInjector.Integration.Web.Tests.Unit/TestClasses.cs | ghcode:00164:5d4fbf3ca5de | mit | codeparrot/github-code | 5d4fbf3ca5def6ab2437d621ff01a5e46c55d7daf0a42d584286949a93f20aab | 0.75 | testing_debugging_repair_refactoring | 309 | false | 2026-07-17 |
// ***********************************************************************
// Copyright (c) 2008 Charlie Poole, Rob Prouse
//
// 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 restri... | OmicronPersei/nunit | src/NUnitFramework/tests/Assertions/AssertThatTests.cs | https://github.com/OmicronPersei/nunit/blob/HEAD/src/NUnitFramework/tests/Assertions/AssertThatTests.cs | ghcode:00164:772c3b682232 | mit | codeparrot/github-code | 772c3b6822324137e5149cdeb0d0d306999bd4a518c22347902f344d2bbcca1d | 0.95 | testing_debugging_repair_refactoring | 2,957 | false | 2026-07-17 |
using System;
using System.Text;
using System.Collections.Generic;
using System.Linq;
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace TonyHeupel.HyperCore.UnitTest
{
[TestClass]
public class HyperHypoTests
{
[Ignore]
[TestMethod]
public void IAmLameAndNoTestsYet()
... | heupel/hypercore | HyperCore.UnitTest/HyperHypoTests.cs | https://github.com/heupel/hypercore/blob/HEAD/HyperCore.UnitTest/HyperHypoTests.cs | ghcode:00164:2b8978e30cb2 | mit | codeparrot/github-code | 2b8978e30cb2e4c5418970c4d93242146e207af6aa6ea46a128cd86af4502c33 | 0.85 | testing_debugging_repair_refactoring | 88 | false | 2026-07-17 |
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Harness.Settings;
using Harness.Tests.Integration.DataProviders;
using MongoDB.Bson;
using MongoDB.Bson.Serialization.Conventions;
using MongoDB.Driver;
using Xunit;
namespace Harness.Tests.Integration
{
public ... | AMCN41R/Harness | src/Harness.Tests.Integration/MongoSessionManagerTests.cs | https://github.com/AMCN41R/Harness/blob/HEAD/src/Harness.Tests.Integration/MongoSessionManagerTests.cs | ghcode:00164:3915cb473be1 | mit | codeparrot/github-code | 3915cb473be12ea559a769ad552472c76c59b9edc9bb15ea6d9465866dfd15db | 0.85 | testing_debugging_repair_refactoring | 885 | false | 2026-07-17 |
// Copyright (c) Microsoft. All Rights Reserved. Licensed under the Apache License, Version 2.0. See License.txt in the project root for license information.
using System.Collections.Immutable;
using System.Diagnostics;
using Microsoft.CodeAnalysis.Diagnostics;
using System.Diagnostics.CodeAnalysis;
using Analyzer... | bkoelman/roslyn-analyzers | src/Microsoft.CodeAnalysis.Analyzers/Core/MetaAnalyzers/DiagnosticAnalyzerAttributeAnalyzer.cs | https://github.com/bkoelman/roslyn-analyzers/blob/HEAD/src/Microsoft.CodeAnalysis.Analyzers/Core/MetaAnalyzers/DiagnosticAnalyzerAttributeAnalyzer.cs | ghcode:00164:8129865866e8 | apache-2.0 | codeparrot/github-code | 8129865866e84602eb3f370ec5e8b891a91aa7250854d734f3f00765ff39e2e6 | 0.85 | testing_debugging_repair_refactoring | 1,456 | false | 2026-07-17 |
/*
* QUANTCONNECT.COM - Democratizing Finance, Empowering Individuals.
* Lean Algorithmic Trading Engine v2.0. Copyright 2014 QuantConnect Corporation.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy ... | tzaavi/Lean | Tests/Engine/DataFeeds/Enumerators/BaseDataCollectionAggregatorEnumeratorTests.cs | https://github.com/tzaavi/Lean/blob/HEAD/Tests/Engine/DataFeeds/Enumerators/BaseDataCollectionAggregatorEnumeratorTests.cs | ghcode:00164:b17af6f724ea | apache-2.0 | codeparrot/github-code | b17af6f724ead15f7744f6f6c62ed34234097ef406ce37c8ed685ef3f67da4b0 | 0.75 | testing_debugging_repair_refactoring | 473 | false | 2026-07-17 |
using Lucene.Net.Analysis.Util;
using NUnit.Framework;
using System;
using System.IO;
namespace Lucene.Net.Analysis.Bg
{
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional informa... | jeme/lucenenet | src/Lucene.Net.Tests.Analysis.Common/Analysis/Bg/TestBulgarianStemFilterFactory.cs | https://github.com/jeme/lucenenet/blob/HEAD/src/Lucene.Net.Tests.Analysis.Common/Analysis/Bg/TestBulgarianStemFilterFactory.cs | ghcode:00164:9a79278a7114 | apache-2.0 | codeparrot/github-code | 9a79278a7114055c46bb0703c37dec3b4955e55aea5edaccd65d88c9b5934034 | 0.85 | testing_debugging_repair_refactoring | 453 | false | 2026-07-17 |
/*
* Licensed to the Apache Software Foundation (ASF) under one or more
* contributor license agreements. See the NOTICE file distributed with
* this work for additional information regarding copyright ownership.
* The ASF licenses this file to You under the Apache License, Version 2.0
* (the "License"); yo... | Mpdreamz/lucene.net | src/core/Index/DirectoryOwningReader.cs | https://github.com/Mpdreamz/lucene.net/blob/HEAD/src/core/Index/DirectoryOwningReader.cs | ghcode:00164:712bd4b7ae62 | apache-2.0 | codeparrot/github-code | 712bd4b7ae62eaff82800eca9ab9a72d76f96f99aa6190503fda37411e754778 | 0.85 | testing_debugging_repair_refactoring | 954 | false | 2026-07-17 |
using System;
using System.Diagnostics;
using System.Text.RegularExpressions;
using NUnit.Framework;
using NUnit.Framework.Interfaces;
namespace Cassandra.Tests.TestAttributes
{
/// <summary>
/// Filter the test based on the OS being used to run the test.
/// </summary>
public class WinOnlyAttribute :... | mintsoft/csharp-driver | src/Cassandra.Tests/TestAttributes/WinOnlyAttribute.cs | https://github.com/mintsoft/csharp-driver/blob/HEAD/src/Cassandra.Tests/TestAttributes/WinOnlyAttribute.cs | ghcode:00164:e6ba6b7171f0 | apache-2.0 | codeparrot/github-code | e6ba6b7171f0c885cb6b806e26109c43212113d50882d7edd4ed15cb9bd9ba21 | 0.85 | testing_debugging_repair_refactoring | 639 | false | 2026-07-17 |
using NUnit.Framework;
namespace NMock2.AcceptanceTests
{
[TestFixture]
public class ArgumentMatchingAcceptanceTest
{
public interface IDemanding
{
void Take(int foo, int bar, int baz);
}
[Test]
public void CanMixMatcherAndNonMatcherExpectedArguments()
{
... | b3cks/nmockEx | src/NMock2.AcceptanceTests/ArgumentMatchingAcceptanceTest.cs | https://github.com/b3cks/nmockEx/blob/HEAD/src/NMock2.AcceptanceTests/ArgumentMatchingAcceptanceTest.cs | ghcode:00164:644108c0a496 | bsd-3-clause | codeparrot/github-code | 644108c0a4961e8bf39b0f532eeec5a658570826ad5729a7c1c1b0671df00387 | 0.6 | testing_debugging_repair_refactoring | 238 | false | 2026-07-17 |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License. See LICENSE in the project root for license information.
using System.Collections.Generic;
using System.Diagnostics.CodeAnalysis;
using System.Threading.Tasks;
using Microsoft.R.Core.AST;
using Microsoft.R.Editor.QuickInfo... | AlexanderSher/RTVS | src/Windows/R/Editor/Test/Utility/QuickInfoSourceUtility.cs | https://github.com/AlexanderSher/RTVS/blob/HEAD/src/Windows/R/Editor/Test/Utility/QuickInfoSourceUtility.cs | ghcode:00164:7d8d225ff84b | mit | codeparrot/github-code | 7d8d225ff84b5553875d1c53e71e8086637d7e8eb445a77860bb6879f0edc615 | 0.85 | testing_debugging_repair_refactoring | 283 | false | 2026-07-17 |
using Microsoft.VisualStudio.TestTools.UnitTesting;
namespace Tests
{
[TestClass]
public class UnitTest1
{
[TestMethod]
public void TestMethod1()
{
}
}
}
| AbhitejJohn/cli | src/dotnet/commands/dotnet-new/CSharp_Mstest/UnitTest1.cs | https://github.com/AbhitejJohn/cli/blob/HEAD/src/dotnet/commands/dotnet-new/CSharp_Mstest/UnitTest1.cs | ghcode:00164:bb3f12383342 | mit | codeparrot/github-code | bb3f1238334276436ccbbce48ba55ed42137d1c83491cf27a326f7f7259308cb | 0.75 | testing_debugging_repair_refactoring | 41 | false | 2026-07-17 |
using System.Collections;
using System.Collections.Generic;
using Moq;
using NUnit.Framework;
using Dnn.PersonaBar.Library.Helper;
using Dnn.PersonaBar.Users.Components;
using DotNetNuke.Entities.Portals;
using DotNetNuke.Entities.Users;
using System.Net;
namespace Dnn.PersonaBar.Users.Tests
{
[TestFixture]
p... | dnnsoftware/Dnn.AdminExperience.Extensions | src/Modules/Manage/Dnn.PersonaBar.Users.Tests/UserValidatorUnitTests.cs | https://github.com/dnnsoftware/Dnn.AdminExperience.Extensions/blob/HEAD/src/Modules/Manage/Dnn.PersonaBar.Users.Tests/UserValidatorUnitTests.cs | ghcode:00164:c20767fba374 | mit | codeparrot/github-code | c20767fba374c298954476813d77a8c84ceeaf5bffed2214c904f1d362163468 | 0.85 | testing_debugging_repair_refactoring | 887 | false | 2026-07-17 |
using NUnit.Framework;
using Shouldly;
using StructureMap.Configuration.DSL;
using StructureMap.Testing.DocumentationExamples;
using StructureMap.Testing.Widget3;
namespace StructureMap.Testing.Configuration.DSL
{
[TestFixture]
public class Use_if_none_tests
{
[TestFixture]
pub... | NightOwl888/structuremap | src/StructureMap.Testing/Configuration/DSL/UseIfNoneTests.cs | https://github.com/NightOwl888/structuremap/blob/HEAD/src/StructureMap.Testing/Configuration/DSL/UseIfNoneTests.cs | ghcode:00164:3cdaee9a1558 | apache-2.0 | codeparrot/github-code | 3cdaee9a15585e07ba104b58e75aa4b4cc7574fc60cbe411fb14c65cdec214e9 | 0.75 | testing_debugging_repair_refactoring | 743 | false | 2026-07-17 |
//
// Copyright (c) Microsoft. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable l... | ahosnyms/azure-sdk-for-net | src/ResourceManagement/Insights/Insights.Tests/BasicTests/AutoscaleTests.cs | https://github.com/ahosnyms/azure-sdk-for-net/blob/HEAD/src/ResourceManagement/Insights/Insights.Tests/BasicTests/AutoscaleTests.cs | ghcode:00164:d6ede004948f | mit | codeparrot/github-code | d6ede004948fec95bc11c1ef808369cb7a4129914d1e220df8643d941c52e1fe | 0.85 | testing_debugging_repair_refactoring | 1,944 | false | 2026-07-17 |
// Copyright (c) Microsoft Corporation. All rights reserved.
// Licensed under the MIT License.
using System;
using System.Collections.Generic;
using System.Linq;
using System.Threading.Tasks;
using Azure.Core.TestFramework;
using Azure.ResourceManager.Compute.Models;
using Azure.ResourceManager.Resources;
using NUni... | brjohnstmsft/azure-sdk-for-net | sdk/compute/Azure.ResourceManager.Compute/tests/ScenarioTests/DedicatedHostTests.cs | https://github.com/brjohnstmsft/azure-sdk-for-net/blob/HEAD/sdk/compute/Azure.ResourceManager.Compute/tests/ScenarioTests/DedicatedHostTests.cs | ghcode:00164:fb49861efff8 | mit | codeparrot/github-code | fb49861efff8d5d1175a2e7724f8ddea8a7c5995d46c761b22d2bd101829dde0 | 0.95 | testing_debugging_repair_refactoring | 1,148 | false | 2026-07-17 |
// Copyright (c) .NET Foundation. All rights reserved.
// Licensed under the MIT License. See License.txt in the project root for license information.
using System;
using System.Threading;
using System.Threading.Tasks;
using Microsoft.Azure.WebJobs.Host.Blobs.Listeners;
using Microsoft.Azure.WebJobs.Host.Executors;
u... | brendankowitz/azure-webjobs-sdk | test/Microsoft.Azure.WebJobs.Host.FunctionalTests/Blobs/Listeners/ScanContainersStrategyTests.cs | https://github.com/brendankowitz/azure-webjobs-sdk/blob/HEAD/test/Microsoft.Azure.WebJobs.Host.FunctionalTests/Blobs/Listeners/ScanContainersStrategyTests.cs | ghcode:00164:df46678b1293 | mit | codeparrot/github-code | df46678b1293c9b3e2ff7a718f2efa85813409acb6db641e5f09dc932aacd734 | 0.85 | testing_debugging_repair_refactoring | 486 | false | 2026-07-17 |
// Visual Studio Shared Project
// Copyright(c) Microsoft Corporation
// All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the License); you may not use
// this file except in compliance with the License. You may obtain a copy of the
// License at http://www.apache.org/licenses/LICENSE-2.0
//
... | int19h/PTVS | Common/Tests/Utilities/WebDownloadUtility.cs | https://github.com/int19h/PTVS/blob/HEAD/Common/Tests/Utilities/WebDownloadUtility.cs | ghcode:00164:e8ad77661134 | apache-2.0 | codeparrot/github-code | e8ad776611340875ca1cbbbc328f36399840608e05191bc876b563f320d92760 | 0.95 | testing_debugging_repair_refactoring | 241 | false | 2026-07-17 |
using System;
using System.Globalization;
using Moq;
using NUnit.Framework;
using Umbraco.Core;
using Umbraco.Core.Composing;
using Umbraco.Core.Configuration;
using Umbraco.Core.Models;
using Umbraco.Tests.TestHelpers;
using Umbraco.Tests.Testing;
using Umbraco.Web.Routing;
namespace Umbraco.Tests.Routing
{
[Tes... | abjerner/Umbraco-CMS | src/Umbraco.Tests/Routing/ContentFinderByUrlTests.cs | https://github.com/abjerner/Umbraco-CMS/blob/HEAD/src/Umbraco.Tests/Routing/ContentFinderByUrlTests.cs | ghcode:00164:01372fd05f09 | mit | codeparrot/github-code | 01372fd05f0908e7dbb29192376cfb9b53e6d7e451d490090040dcb7a64e9949 | 0.85 | testing_debugging_repair_refactoring | 1,787 | false | 2026-07-17 |
using System;
using System.Collections;
using System.Collections.Generic;
using System.Collections.ObjectModel;
using System.Globalization;
using System.Linq;
using System.Reflection;
using System.Text;
using Ploeh.Albedo;
using Ploeh.AutoFixture.Idioms;
using Ploeh.AutoFixture.Kernel;
using Ploeh.TestTypeFoundation;
... | yuva2achieve/AutoFixture | Src/IdiomsUnitTest/ConstructorInitializedMemberAssertionTest.cs | https://github.com/yuva2achieve/AutoFixture/blob/HEAD/Src/IdiomsUnitTest/ConstructorInitializedMemberAssertionTest.cs | ghcode:00164:86f576c17933 | mit | codeparrot/github-code | 86f576c179338c382a803d00b82a605fd1d4ca9872e6752b691ab514f4f1dd26 | 0.85 | testing_debugging_repair_refactoring | 4,932 | false | 2026-07-17 |
using NUnit.Framework;
[assembly: SetCulture("en-US")]
[assembly: SetUICulture("en-US")]
| umbraco/Umbraco-CMS | tests/Umbraco.Tests.UnitTests/AssemblyAttributes.cs | https://github.com/umbraco/Umbraco-CMS/blob/HEAD/tests/Umbraco.Tests.UnitTests/AssemblyAttributes.cs | ghcode:00164:4d63a2927cbf | mit | codeparrot/github-code | 4d63a2927cbf0c6212bbcd966e3ad92efc19cc27fe9ec352a04f9158253e8a80 | 0.35 | testing_debugging_repair_refactoring | 22 | false | 2026-07-17 |
using CocosSharp;
namespace tests
{
public class CocosNodeTestScene : TestScene
{
private static int sceneIdx = -1;
private static int MAX_LAYER = 14;
public static CCLayer createCocosNodeLayer(int nIndex)
{
switch (nIndex)
{
case 0:
return new CameraT... | haithemaraissia/CocosSharp | tests/tests/classes/tests/NodeTest/CocosNodeTestScene.cs | https://github.com/haithemaraissia/CocosSharp/blob/HEAD/tests/tests/classes/tests/NodeTest/CocosNodeTestScene.cs | ghcode:00164:d0659a6bc2c7 | mit | codeparrot/github-code | d0659a6bc2c7c710dcf7ce35fbd99a532f6865d2b69cca172fdab3d0145bd634 | 0.85 | testing_debugging_repair_refactoring | 481 | false | 2026-07-17 |
// Licensed to the .NET Foundation under one or more agreements.
// The .NET Foundation licenses this file to you under the MIT license.
// See the LICENSE file in the project root for more information.
using System.IO;
using System.Linq;
using System.Collections.Generic;
namespace System.Reflection.Tests
{
inter... | KrzysztofCwalina/corefxlab | tests/System.Reflection.TypeLoader.Tests/src/TestUtils/TestData.cs | https://github.com/KrzysztofCwalina/corefxlab/blob/HEAD/tests/System.Reflection.TypeLoader.Tests/src/TestUtils/TestData.cs | ghcode:00164:95e322fae10e | mit | codeparrot/github-code | 95e322fae10eedf5ac0025b205a8327f4b9d1fd107291756852c52724fc54866 | 0.75 | testing_debugging_repair_refactoring | 76,319 | false | 2026-07-17 |
/*
* Farseer Physics Engine based on Box2D.XNA port:
* Copyright (c) 2010 Ian Qvist
*
* Box2D.XNA port of Box2D:
* Copyright (c) 2009 Brandon Furtwangler, Nathan Furtwangler
*
* Original source Box2D:
* Copyright (c) 2006-2009 Erin Catto http://www.gphysics.com
*
* This software is provided 'as-is', without any exp... | mono/CocosSharp | tests/tests/classes/tests/Box2DTestBet/Tests/LineJointTest.cs | https://github.com/mono/CocosSharp/blob/HEAD/tests/tests/classes/tests/Box2DTestBet/Tests/LineJointTest.cs | ghcode:00164:db8475545a9d | mit | codeparrot/github-code | db8475545a9d96908d1857f54a12d100ec70b75f4542f14ecc936ade039801be | 0.85 | testing_debugging_repair_refactoring | 805 | false | 2026-07-17 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.