diff --git a/backend/secfit/suggested_workouts/tests.py b/backend/secfit/suggested_workouts/tests.py
index a3793f9dd2087b3fc8a6ed12f71f8481475974c6..f7e22e2dbd3fb280c80c521b0fe314734c28b5ea 100644
--- a/backend/secfit/suggested_workouts/tests.py
+++ b/backend/secfit/suggested_workouts/tests.py
@@ -10,8 +10,10 @@ from workouts.serializers import ExerciseSerializer
 from django.urls import reverse
 from suggested_workouts.views import createSuggestedWorkouts, detailedSuggestedWorkout
 from rest_framework import status
+
+
 """
-Integration testing for the functionality for UC2
+Integration testing for new feature: UC2
 """
 
 
@@ -24,7 +26,6 @@ functions as expected together with the serializer, meaning that we test wheter
 to deserialize, serialize, updating and creating an instance of SuggestedWorkout.
 """
 
-
 class SuggestedWorkoutTestCase(APITestCase):
     def setUp(self):
         self.factory = APIRequestFactory()
diff --git a/backend/secfit/users/tests.py b/backend/secfit/users/tests.py
index 90329a719704dba5e26235b7ee44f581afa08f7f..6b66a60f1f25d971b1236b3d8bd033b11bdbd961 100644
--- a/backend/secfit/users/tests.py
+++ b/backend/secfit/users/tests.py
@@ -13,8 +13,10 @@ import json
 from unittest import skip
 import random
 
+
+
 '''
-    Serializer
+    Serializer tests
 '''
 
 class UserSerializerTestCase(APITestCase):
@@ -174,8 +176,9 @@ class UserSerializerTestCase(APITestCase):
 
 
 '''
-    Boundary values
+    Boundary value tests
 '''
+
 defaultDataRegister = {
         "username": "johnDoe", "email": "johnDoe@webserver.com", "password": "johnsPassword", "password1": "johnsPassword",  "phone_number": "11223344", "country": "Norway", "city": "Trondheim", "street_address": "Kongens gate 33"
     }
@@ -457,7 +460,6 @@ class PhoneBoundaryTestCase(TestCase):
             self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
 
 
-
 class CountryBoundaryTestCase(TestCase):
     def setUp(self):
         # Adds some randomness
@@ -528,7 +530,6 @@ class CountryBoundaryTestCase(TestCase):
             self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
 
 
-
 class CityBoundaryTestCase(TestCase):
     def setUp(self):
         # Adds some randomness
@@ -594,8 +595,6 @@ class CityBoundaryTestCase(TestCase):
             self.assertEqual(response.status_code, status.HTTP_400_BAD_REQUEST)
 
 
-
-
 class Street_AdressBoundaryTestCase(TestCase):
     def setUp(self):
         # Adds some randomness
@@ -668,12 +667,14 @@ class Street_AdressBoundaryTestCase(TestCase):
 
 
 
+
+
 '''
     2-way domain testing
 
     We will do the following:
     1. Define data, we will reuse the same data as in boundary values (ideally this could be automated so that all the data is only stored in one place, the validity could be set from the tests themselfs)
-    2. Do several loops to test the data togheter
+    2. Do several iterations to test the data togheter
     3. Return results
 '''
 
diff --git a/backend/secfit/workouts/tests.py b/backend/secfit/workouts/tests.py
index 6b16dccc47976f01080ffad6eefec6097e1c2cae..959df1e507468a098ae32b75b33a1d958800242d 100644
--- a/backend/secfit/workouts/tests.py
+++ b/backend/secfit/workouts/tests.py
@@ -15,6 +15,10 @@ import pytz
 from rest_framework.request import Request
 
 
+'''
+    Test permmisions.py
+'''
+
 class WorkoutPermissionsTestCases(TestCase):
     def setUp(self):
         self.owner = get_user_model()(id=1, username='owner', email='email@email.com', phone_number='92134654',
@@ -267,8 +271,11 @@ class WorkoutPermissionsTestCases(TestCase):
             self, request=self.request, view=None, obj=None))
 
 
+
+
+
 '''
-    Boundary values
+    Boundary value tests
 '''
 defaultDataWorkout = {"name": "workoutname", "date": "2021-01-1T13:29:00.000Z", "notes": "notes",
                       "visibility": "PU", "planned": "false", "exercise_instances": [], "filename": []}
@@ -676,6 +683,14 @@ class Exercise_instancesBoundaryTestCase(TestCase):
         self.assertEqual(response.status_code, 400)
 
 
+
+
+
+
+'''
+    Integration test new feature: UC1
+'''
+
 class IntegrationTestPlannedWorkout(APITestCase):
     def setUp(self):
         self.client = APIClient()