public void The_Create_Method_Writes_Nothing()
        {
            IProjectSerialiser serialiser = new ProjectSerialiserV1(fileController);

            serialiser.CreateApiExtensionFiles(new ApiExtensionMethod[0], "Folder");

            fileController.AssertWasNotCalled(f => f.WriteAllText(null, null), c => c.IgnoreArguments());
            fileController.AssertWasNotCalled(f => f.WriteResourceToFile(null, null, null), c => c.IgnoreArguments());
            fileController.AssertWasNotCalled(f => f.WriteStreamToFile(null, null), c => c.IgnoreArguments());
        }