umontreal-diro / IFT3913

Syllabus pour IFT3913 [automne 2024]
MIT License
16 stars 31 forks source link

Tester dans un domaine spécifique #10

Open bbaudry opened 1 month ago

bbaudry commented 1 month ago

des techniques dédiées à l'analyse de la qualité logicielle dans des domaines applicatifs particuliers (jeux vidéo, automobile, santé, agronomie, etc.)

[Test]
public void TestUnchangedSettingsFollowAppliedDifficulty()
{
   var result = applyDifficulty(new BeatmapDifficulty
   {
      DrainRate = 10,
      OverallDifficulty = 10
   });
   Assert.That(result.DrainRate, Is.EqualTo(10));
   Assert.That(result.OverallDifficulty, Is.EqualTo(10));
...
}

Exemple d'un test pour le jeu OSU!

bbaudry commented 1 month ago

tester des jeux construits avec le moteur unity unity test framework

bbaudry commented 1 month ago

Automation Test Framework pour des jeux sur unreal

bbaudry commented 1 month ago

A Survey of Video Game Testing

bbaudry commented 1 month ago

Video Game Automated Testing Approaches:An Assessment Framework

bbaudry commented 1 month ago

ArduinoUnit pour tester sur le micro contrôleur Arduino

bbaudry commented 1 month ago

ceedling pour tester du code de micro contrôleur

bbaudry commented 1 month ago

ntt pour tester des systèmes telecom avec ttcn

bbaudry commented 1 month ago

Test automatique pour la robotique avec ROS https://wiki.ros.org/Quality/Tutorials/UnitTesting

bbaudry commented 1 month ago

Understanding Misconfigurations in ROS: An Empirical Study and Current Approaches

bbaudry commented 1 month ago

Software Testing in the World of IoT

bbaudry commented 2 weeks ago

Testing a Django web application https://developer.mozilla.org/en-US/docs/Learn/Server-side/Django/Testing [FR] https://developer.mozilla.org/fr/docs/Learn/Server-side/Django/Testing

bbaudry commented 6 days ago

Searching bug instances in gameplay video repositories

bbaudry commented 6 days ago

The (written) unwritten guide to pull requests