Laravel Feature or Unit Tests: The Difference

Поделиться
HTML-код
  • Опубликовано: 2 фев 2025

Комментарии • 28

  • @gaofan2856
    @gaofan2856 2 года назад +1

    Perfect video format. Watching your channel on daily basis while having breakfast. Please keep going with such short videos.

  • @mikusano4277
    @mikusano4277 6 месяцев назад

    This video gave me clear understanding about the concept of tests. Thank you!

  • @xadierz1816
    @xadierz1816 2 года назад

    Thanks so much for your thoughtful and detailed videos! On to the soft!

  • @tprinty
    @tprinty 2 года назад

    Glad Everyone found this useful

  • @techjeed9542
    @techjeed9542 2 года назад

    thanks for this video, now I understand how laravel test works

  • @limpiadora
    @limpiadora 2 года назад +2

    I also heard that unit test usually runs faster because they don't interact with IO, and that's very important in CI/CD setup.

  • @mayanksgajjar
    @mayanksgajjar 2 года назад

    Thanks for sharing such a valuable information with us 😊

  • @jtech04
    @jtech04 2 года назад +1

    I was just waiting for this

  • @JouvaMoufette
    @JouvaMoufette 2 года назад +3

    An interesting thought I have regarding the mistake that was made a few times with a leading zero on time:
    I feel that if this was a real project, and there was no specific requirements stating how it should be formatted for a particular reason, I'd argue that if you're getting confused over the time, the time you keep thinking it was honestly just should be the way the time gets formatted.
    Obviously this was just for demo purposes, but I feel that if something is confusing in how software behaves, it's a bug.

  • @danielj4860
    @danielj4860 2 года назад +2

    I personally write a very high level test to ensure the feature is working as expected generally. For edge cases I'll write a unit test when needed. I only see value in tests to allow for future refactoring jobs to go smoothly. The reality in 90% of the time tests dont bring much value to the company in comparison to spending time writing new features. I would suggest looking up theprimeagen/theo unit test on youtube for a good discussion.

  • @26kito
    @26kito 2 года назад +3

    Hey povillas, just wanna thank you for your explanation about the difference between feature and unit test. Anyway, can you give us video about testing simple crud? I'm still confused with how to use test

    • @LaravelDaily
      @LaravelDaily  2 года назад +3

      I've created a course about it: laraveldaily.teachable.com/p/laravel-testing-for-beginners-phpunit-and-pest

  • @llBestBoyll
    @llBestBoyll 2 года назад

    really useful one thanks man ❤️

  • @KlethonioFerreira
    @KlethonioFerreira 7 месяцев назад

    Unit tests don't have access to facades by default so you would have to change the "extends TestCase", in the end you would have a Feature Test, if you make very complex.

  • @EDRDanielGdz
    @EDRDanielGdz 2 месяца назад

    Titanic reference is legit.

  • @free2idol1
    @free2idol1 Год назад

    I have a gaming project in which one of the apis is to serve 2 functionalities:

    - assigning mission to user (mission is some sort of quest that once getting complete, user'd get rewards).
    - fetching a list of missions currently assigned to user.
    Each functionality has very complex logic inside and each requires seeding to make the test running.
    So if I want to test if these 2 functionalities, should it be called unit test or feature test?
    If its called unit test, meaning it would not require any seeding or DB call but there must be DB call in both cases.
    But how could it be called feature test when they are not the whole api end point?
    Any insight would be much appreciated.

    • @LaravelDaily
      @LaravelDaily  Год назад +1

      I guess I would call "feature test" any test that touches a DB.

  • @muhammadumarsotvoldiev8768
    @muhammadumarsotvoldiev8768 Год назад

    Thank you very much

  • @Shyloo
    @Shyloo 2 года назад

    you are the best!

  • @razvancomsa2276
    @razvancomsa2276 2 года назад

    Are api requests tests feature or unit tests ?

  • @isabelpino1987
    @isabelpino1987 2 года назад

    my soft and no content plays, I would really appreciate so guidance on how to fix tNice tutorials problem so I can actually move pass tNice tutorials, thank

  • @firdavs.ibodullayev
    @firdavs.ibodullayev 2 года назад

    I did not know about it

  • @hadizarrabi8192
    @hadizarrabi8192 11 месяцев назад

    cool

  • @djurdjabarjaktarevic3707
    @djurdjabarjaktarevic3707 2 года назад

    wondering if u would be willing to collab to make a . TNice tutorials would be my first and I would understand and apprehensions you may

  • @ricko13
    @ricko13 2 года назад +1

    I always skip testing 🦋

  • @alexkhonko4115
    @alexkhonko4115 2 года назад

    most of your test should be feature test
    lol what?)) how about test pyramid?

    • @paulocardoso670
      @paulocardoso670 2 года назад

      Since I started to work with nodeJS many things have changed, testing with nodeJS (jest) it makes more sense and it's easier to write unit tests but for laravel projects it's so much easier to write feature tests, I'd say "it depends"